@unction/pipe
v10.13.0
Published
Takes a list of functions and runs a value through that stack from left to right
Downloads
99
Readme
@unction/pipe
Array => B => C
Takes a list of functions and runs a value through that stack from left to right.
pipe([toString, toInteger])(0) // 0
pipe([append("b"), append("a")])("c") // "cba"