Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 405 Bytes

README.md

File metadata and controls

27 lines (14 loc) · 405 Bytes

fcomp

function composition

Installation

$ npm install fcomp

or

$ component install nathan7/fcomp

API

fcomp(a, b, ..) -> Function (a, b, ..)

Composes the given functions. The return value of each function is passed to the next. All the arguments are passed to the first function.

fcomp.reverse(...fns)

Equivalent to fcomp(...fns.reverse())

License

MIT