• Creates a function that runs each argument through a corresponding transform function.

    Parameters

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

      The function to wrap.

        • (...args): any
        • Parameters

          • Rest ...args: any[]

          Returns any

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

      The functions to transform arguments, specified as individual functions or arrays of functions.

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

    Returns the new function.

      • (...args): any
      • Creates a function that runs each argument through a corresponding transform function.

        Parameters

        • Rest ...args: any[]

        Returns any

        Returns the new function.

Generated using TypeDoc