UNPKG

@daysnap/utils

Version:
9 lines (7 loc) 171 B
// src/listGenerator.ts function listGenerator(length, fn) { return new Array(length).fill("").map((_, index) => fn ? fn(index) : index); } export { listGenerator };