PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
src
/
function
define(['../array/slice'], function (slice) { /** * Creates a partially applied function. */ function partial(f) { var as = slice(arguments, 1); return function() { var args = as.concat(slice(arguments)); for (var i = args.length; i--;) { if (args[i] === partial._) { args[i] = args.splice(-1)[0]; } } return f.apply(this, args); }; } partial._ = {}; return partial; });
[-] 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]