-
Notifications
You must be signed in to change notification settings - Fork 7.1k
/
Copy pathcollection.js
30 lines (30 loc) · 1.17 KB
/
collection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
define(['./at', './countBy', './each', './eachRight', './every', './filter', './find', './findLast', './forEach', './forEachRight', './groupBy', './includes', './invokeMap', './keyBy', './map', './orderBy', './partition', './reduce', './reduceRight', './reject', './sample', './sampleSize', './shuffle', './size', './some', './sortBy'], function(at, countBy, each, eachRight, every, filter, find, findLast, forEach, forEachRight, groupBy, includes, invokeMap, keyBy, map, orderBy, partition, reduce, reduceRight, reject, sample, sampleSize, shuffle, size, some, sortBy) {
return {
'at': at,
'countBy': countBy,
'each': each,
'eachRight': eachRight,
'every': every,
'filter': filter,
'find': find,
'findLast': findLast,
'forEach': forEach,
'forEachRight': forEachRight,
'groupBy': groupBy,
'includes': includes,
'invokeMap': invokeMap,
'keyBy': keyBy,
'map': map,
'orderBy': orderBy,
'partition': partition,
'reduce': reduce,
'reduceRight': reduceRight,
'reject': reject,
'sample': sample,
'sampleSize': sampleSize,
'shuffle': shuffle,
'size': size,
'some': some,
'sortBy': sortBy
};
});