Pacote
    Preparing search index...

    Function times

    • 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.

      Type Parameters

      • T

      Parameters

      • n: number

        The number of times to call the function.

      • fn: (index: number) => T

        Function to execute, receives the call index.

      Returns T[]

      Array containing the ordered results for each function call.

      import { times } from '@pacote/array'

      times(3, (index) => index) // => [0, 1, 2]