PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
function
/** * Returns a function that composes multiple functions, passing results to * each other. */ function compose() { var fns = arguments; return function(arg){ // only cares about the first argument since the chain can only // deal with a single return value anyway. It should start from // the last fn. var n = fns.length; while (n--) { arg = fns[n].call(this, arg); } return arg; }; } module.exports = compose;
[-] bind.js
[edit]
[-] throttle.js
[edit]
[-] partial.js
[edit]
[-] awaitDelay.js
[edit]
[-] series.js
[edit]
[+]
..
[-] debounce.js
[edit]
[-] timeout.js
[edit]
[-] times.js
[edit]
[-] wrap.js
[edit]
[-] func.js
[edit]
[-] identity.js
[edit]
[-] constant.js
[edit]
[-] makeIterator_.js
[edit]
[-] compose.js
[edit]
[-] prop.js
[edit]