• Creates a function that invokes func with arguments arranged according to the specified indexes where the argument value at the first index is provided as the first argument, the argument value at the second index is provided as the second argument, and so on.

    Parameters

    • func: ((...args) => any)

      The function to rearrange arguments for.

        • (...args): any
        • Parameters

          • Rest ...args: any[]

          Returns any

    • Rest ...indexes: Many<number>[]

      The arranged argument indexes, specified as individual indexes or arrays of indexes.

    Returns ((...args) => any)

    Returns the new function.

      • (...args): any
      • Creates a function that invokes func with arguments arranged according to the specified indexes where the argument value at the first index is provided as the first argument, the argument value at the second index is provided as the second argument, and so on.

        Parameters

        • Rest ...args: any[]

        Returns any

        Returns the new function.

Generated using TypeDoc