mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
|
import constant = require('lodash/constant');
|
||
|
import times = require('lodash/times');
|
||
|
|
||
|
/**
|
||
|
* Returns a new array of length count, filled with the given value.
|
||
|
*/
|
||
|
export function arrayRepeat<T>(count: number, value: T): T[] {
|
||
|
return times(count, constant(value));
|
||
|
}
|