commerce/site/lib/range-map.ts
2022-01-07 11:48:45 -05:00

8 lines
162 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
}