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

    Parameters

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

      The function to wrap.

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

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

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

    Returns the new function.