mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
68 lines
3.3 KiB
JavaScript
68 lines
3.3 KiB
JavaScript
define(['./chunk', './compact', './concat', './difference', './differenceBy', './differenceWith', './drop', './dropRight', './dropRightWhile', './dropWhile', './fill', './findIndex', './findLastIndex', './flatten', './flattenDeep', './flattenDepth', './fromPairs', './head', './indexOf', './initial', './intersection', './intersectionBy', './intersectionWith', './join', './last', './lastIndexOf', './pull', './pullAll', './pullAllBy', './pullAllWith', './pullAt', './remove', './reverse', './slice', './sortedIndex', './sortedIndexBy', './sortedIndexOf', './sortedLastIndex', './sortedLastIndexBy', './sortedLastIndexOf', './sortedUniq', './sortedUniqBy', './tail', './take', './takeRight', './takeRightWhile', './takeWhile', './union', './unionBy', './unionWith', './uniq', './uniqBy', './uniqWith', './unzip', './unzipWith', './without', './xor', './xorBy', './xorWith', './zip', './zipObject', './zipObjectDeep', './zipWith'], function(chunk, compact, concat, difference, differenceBy, differenceWith, drop, dropRight, dropRightWhile, dropWhile, fill, findIndex, findLastIndex, flatten, flattenDeep, flattenDepth, fromPairs, head, indexOf, initial, intersection, intersectionBy, intersectionWith, join, last, lastIndexOf, pull, pullAll, pullAllBy, pullAllWith, pullAt, remove, reverse, slice, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex, sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, tail, take, takeRight, takeRightWhile, takeWhile, union, unionBy, unionWith, uniq, uniqBy, uniqWith, unzip, unzipWith, without, xor, xorBy, xorWith, zip, zipObject, zipObjectDeep, zipWith) {
|
|
return {
|
|
'chunk': chunk,
|
|
'compact': compact,
|
|
'concat': concat,
|
|
'difference': difference,
|
|
'differenceBy': differenceBy,
|
|
'differenceWith': differenceWith,
|
|
'drop': drop,
|
|
'dropRight': dropRight,
|
|
'dropRightWhile': dropRightWhile,
|
|
'dropWhile': dropWhile,
|
|
'fill': fill,
|
|
'findIndex': findIndex,
|
|
'findLastIndex': findLastIndex,
|
|
'flatten': flatten,
|
|
'flattenDeep': flattenDeep,
|
|
'flattenDepth': flattenDepth,
|
|
'fromPairs': fromPairs,
|
|
'head': head,
|
|
'indexOf': indexOf,
|
|
'initial': initial,
|
|
'intersection': intersection,
|
|
'intersectionBy': intersectionBy,
|
|
'intersectionWith': intersectionWith,
|
|
'join': join,
|
|
'last': last,
|
|
'lastIndexOf': lastIndexOf,
|
|
'pull': pull,
|
|
'pullAll': pullAll,
|
|
'pullAllBy': pullAllBy,
|
|
'pullAllWith': pullAllWith,
|
|
'pullAt': pullAt,
|
|
'remove': remove,
|
|
'reverse': reverse,
|
|
'slice': slice,
|
|
'sortedIndex': sortedIndex,
|
|
'sortedIndexBy': sortedIndexBy,
|
|
'sortedIndexOf': sortedIndexOf,
|
|
'sortedLastIndex': sortedLastIndex,
|
|
'sortedLastIndexBy': sortedLastIndexBy,
|
|
'sortedLastIndexOf': sortedLastIndexOf,
|
|
'sortedUniq': sortedUniq,
|
|
'sortedUniqBy': sortedUniqBy,
|
|
'tail': tail,
|
|
'take': take,
|
|
'takeRight': takeRight,
|
|
'takeRightWhile': takeRightWhile,
|
|
'takeWhile': takeWhile,
|
|
'union': union,
|
|
'unionBy': unionBy,
|
|
'unionWith': unionWith,
|
|
'uniq': uniq,
|
|
'uniqBy': uniqBy,
|
|
'uniqWith': uniqWith,
|
|
'unzip': unzip,
|
|
'unzipWith': unzipWith,
|
|
'without': without,
|
|
'xor': xor,
|
|
'xorBy': xorBy,
|
|
'xorWith': xorWith,
|
|
'zip': zip,
|
|
'zipObject': zipObject,
|
|
'zipObjectDeep': zipObjectDeep,
|
|
'zipWith': zipWith
|
|
};
|
|
});
|