UNPKG

mout

Version:

Modular Utilities

8 lines (7 loc) 222 B
/** * Create an array of size N and fill with a value. * This function will throw an exception in case * you pass a negative number. */ declare function repeat(n: any, value: any): any[]; export default repeat;