UNPKG

@daysnap/utils

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