mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Bump to v3.0.0.
This commit is contained in:
43
array.js
Normal file
43
array.js
Normal file
@@ -0,0 +1,43 @@
|
||||
define(['./array/chunk', './array/compact', './array/difference', './array/drop', './array/dropRight', './array/dropRightWhile', './array/dropWhile', './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/without', './array/xor', './array/zip', './array/zipObject'], function(chunk, compact, difference, drop, dropRight, dropRightWhile, dropWhile, 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, without, xor, zip, zipObject) {
|
||||
return {
|
||||
'chunk': chunk,
|
||||
'compact': compact,
|
||||
'difference': difference,
|
||||
'drop': drop,
|
||||
'dropRight': dropRight,
|
||||
'dropRightWhile': dropRightWhile,
|
||||
'dropWhile': dropWhile,
|
||||
'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,
|
||||
'without': without,
|
||||
'xor': xor,
|
||||
'zip': zip,
|
||||
'zipObject': zipObject
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user