PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
function
/** * Returns a function that will execute a list of functions in sequence * passing the same arguments to each one. (useful for batch processing * items during a forEach loop) */ function series(){ var fns = arguments; return function(){ var i = 0, n = fns.length; while (i < n) { fns[i].apply(this, arguments); i += 1; } }; } module.exports = series;
[-] bind.js
[edit]
[-] throttle.js
[edit]
[-] partial.js
[edit]
[-] awaitDelay.js
[edit]
[-] series.js
[edit]
[-] memoize.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]
[-] after.js
[edit]
[-] prop.js
[edit]