commerce/site/lib/range-map.ts
2022-04-20 15:29:34 +05:00

8 lines
165 B
TypeScript

export default function rangeMap(n: number, fn: (i: number) => any) {
const arr = [];
while (n > arr.length) {
arr.push(fn(arr.length));
}
return arr;
}