Type Parameters
- A extends any[]
- R1
- R2
- R3
- R4
- R5
- R6
- R7
Parameters
- f7: ((a: R6) => R7)
- f6: ((a: R5) => R6)
- f5: ((a: R4) => R5)
- f4: ((a: R3) => R4)
- f3: ((a: R2) => R3)
- f2: ((a: R1) => R2)
- f1: ((...args: A) => R1)
Returns ((...args: A) => R7)
Returns the new function.
This method is like _.flow except that it creates a function that invokes the provided functions from right to left.