16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
import { toInteger } from './toInteger.mjs';
|
|
|
|
function times(n, getValue) {
|
|
n = toInteger(n);
|
|
if (n < 1 || !Number.isSafeInteger(n)) {
|
|
return [];
|
|
}
|
|
const result = new Array(n);
|
|
for (let i = 0; i < n; i++) {
|
|
result[i] = typeof getValue === 'function' ? getValue(i) : i;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export { times };
|