9 lines
216 B
JavaScript
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);
|