composanator
v3.0.4
Published
Small library for composing functions together.
Downloads
4
Maintainers
Readme
##Composanator
A small library to compose functions togeather.
###Use
Functions can be composed from either the left, or right. #####Right to left Composition
var compose = require("componanator");
//...
var newFunc = compose.right(lastFunc,firstFunc);
#####Left to right Composition
var compose = require("componanator");
//...
var newFunc = compose.left(firstFunc, lastFunc);