PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
src
/
collection
define(['../array/slice'], function(slice){ /** * internal method used to create other collection modules. */ function makeCollectionMethod(arrMethod, objMethod, defaultReturn) { return function(){ var args = slice(arguments); if (args[0] == null) { return defaultReturn; } // array-like is treated as array return (typeof args[0].length === 'number')? arrMethod.apply(null, args) : objMethod.apply(null, args); }; } return makeCollectionMethod; });
[-] find.js
[edit]
[-] reduce.js
[edit]
[-] max.js
[edit]
[+]
..
[-] contains.js
[edit]
[-] forEach.js
[edit]
[-] some.js
[edit]
[-] pluck.js
[edit]
[-] min.js
[edit]
[-] make_.js
[edit]
[-] size.js
[edit]
[-] reject.js
[edit]
[-] map.js
[edit]
[-] filter.js
[edit]
[-] every.js
[edit]