Calls a function any number of times, placing the result of each call sequentially in a new array. The function receives a call index starting at 0 that matches the position in the new array where the result will be placed.
The number of times to call the function.
Function to execute, receives the call index.
Array containing the ordered results for each function call.
import { times } from '@pacote/array'times(3, (index) => index) // => [0, 1, 2] Copy
import { times } from '@pacote/array'times(3, (index) => index) // => [0, 1, 2]
Calls a function any number of times, placing the result of each call sequentially in a new array. The function receives a call index starting at 0 that matches the position in the new array where the result will be placed.