• Creates a function that invokes iteratees with the arguments provided to the created function and returns their results.

    Type Parameters

    • TResult

    Parameters

    • Rest...iteratees: Many<((...args: any[]) => TResult)>[]

      The iteratees to invoke.

    Returns ((...args: any[]) => TResult[])

    Returns the new function.