commerce/site/lib/range-map.ts
Matthew Mulford 470c40fd53 shopify
2022-10-08 14:37:47 -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
}