PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
src
/
function
define(['../array/indexOf', '../array/slice', '../array/take'], function (indexOf, slice, take) { var _ = {}; /** * Creates a partially applied function. */ function partial(f) { var as = slice(arguments, 1); var has_ = indexOf(as, _) !== -1; return function() { var rest = slice(arguments); // Don't waste time checking for placeholders if there aren't any. var args = has_ ? take(as.length, function(i) { var a = as[i]; return a === _ ? rest.shift() : a; }) : as; return f.apply(this, rest.length ? args.concat(rest) : args); }; } partial._ = _; return partial; });
[-] 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]