Last Updated: June 01, 2017
·
316
· Codi

Compose Javascript functions from left to right with function-pipe (array of functions into a single function)

You can use this function-pipe Javascript component to compose / pipe functions from left to right.
It gets an array fo functions and returns a function.

Example:

pipe(func1, func2, func3)(val) === func3(func2(func3(val)))