UNPKG

mout

Version:

Modular Utilities

15 lines (10 loc) 271 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. */ function repeat(n, value) { var arr = new Array(n); return arr.fill(value); } module.exports = repeat;