mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
47 lines
2.2 KiB
JavaScript
47 lines
2.2 KiB
JavaScript
define(['./array/chunk', './array/compact', './array/difference', './array/drop', './array/dropRight', './array/dropRightWhile', './array/dropWhile', './array/fill', './array/findIndex', './array/findLastIndex', './array/first', './array/flatten', './array/flattenDeep', './array/head', './array/indexOf', './array/initial', './array/intersection', './array/last', './array/lastIndexOf', './array/object', './array/pull', './array/pullAt', './array/remove', './array/rest', './array/slice', './array/sortedIndex', './array/sortedLastIndex', './array/tail', './array/take', './array/takeRight', './array/takeRightWhile', './array/takeWhile', './array/union', './array/uniq', './array/unique', './array/unzip', './array/unzipWith', './array/without', './array/xor', './array/zip', './array/zipObject', './array/zipWith'], function(chunk, compact, difference, drop, dropRight, dropRightWhile, dropWhile, fill, findIndex, findLastIndex, first, flatten, flattenDeep, head, indexOf, initial, intersection, last, lastIndexOf, object, pull, pullAt, remove, rest, slice, sortedIndex, sortedLastIndex, tail, take, takeRight, takeRightWhile, takeWhile, union, uniq, unique, unzip, unzipWith, without, xor, zip, zipObject, zipWith) {
|
|
return {
|
|
'chunk': chunk,
|
|
'compact': compact,
|
|
'difference': difference,
|
|
'drop': drop,
|
|
'dropRight': dropRight,
|
|
'dropRightWhile': dropRightWhile,
|
|
'dropWhile': dropWhile,
|
|
'fill': fill,
|
|
'findIndex': findIndex,
|
|
'findLastIndex': findLastIndex,
|
|
'first': first,
|
|
'flatten': flatten,
|
|
'flattenDeep': flattenDeep,
|
|
'head': head,
|
|
'indexOf': indexOf,
|
|
'initial': initial,
|
|
'intersection': intersection,
|
|
'last': last,
|
|
'lastIndexOf': lastIndexOf,
|
|
'object': object,
|
|
'pull': pull,
|
|
'pullAt': pullAt,
|
|
'remove': remove,
|
|
'rest': rest,
|
|
'slice': slice,
|
|
'sortedIndex': sortedIndex,
|
|
'sortedLastIndex': sortedLastIndex,
|
|
'tail': tail,
|
|
'take': take,
|
|
'takeRight': takeRight,
|
|
'takeRightWhile': takeRightWhile,
|
|
'takeWhile': takeWhile,
|
|
'union': union,
|
|
'uniq': uniq,
|
|
'unique': unique,
|
|
'unzip': unzip,
|
|
'unzipWith': unzipWith,
|
|
'without': without,
|
|
'xor': xor,
|
|
'zip': zip,
|
|
'zipObject': zipObject,
|
|
'zipWith': zipWith
|
|
};
|
|
});
|