FurBall/uni_modules/tuniaoui-vue3/libs/lodash/_baseTime.ts

10 lines
194 B
TypeScript

export function baseTimes(n: any, iteratee: any) {
let index = -1
const result = Array.from({ length: n })
while (++index < n) {
result[index] = iteratee(index)
}
return result
}