lemo-crm/web/app/helpers/repeat-it.js
2022-06-24 21:56:55 +08:00

9 lines
216 B
JavaScript

import { helper } from '@ember/component/helper';
import { htmlSafe } from '@ember/template';
export function repeatIt([val, t]) {
return htmlSafe(Array(t).fill(val).join(''));
}
export default helper(repeatIt);