mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Bump to v3.0.0.
This commit is contained in:
81
array.js
Normal file
81
array.js
Normal file
@@ -0,0 +1,81 @@
|
||||
import chunk from './array/chunk';
|
||||
import compact from './array/compact';
|
||||
import difference from './array/difference';
|
||||
import drop from './array/drop';
|
||||
import dropRight from './array/dropRight';
|
||||
import dropRightWhile from './array/dropRightWhile';
|
||||
import dropWhile from './array/dropWhile';
|
||||
import findIndex from './array/findIndex';
|
||||
import findLastIndex from './array/findLastIndex';
|
||||
import first from './array/first';
|
||||
import flatten from './array/flatten';
|
||||
import flattenDeep from './array/flattenDeep';
|
||||
import head from './array/head';
|
||||
import indexOf from './array/indexOf';
|
||||
import initial from './array/initial';
|
||||
import intersection from './array/intersection';
|
||||
import last from './array/last';
|
||||
import lastIndexOf from './array/lastIndexOf';
|
||||
import object from './array/object';
|
||||
import pull from './array/pull';
|
||||
import pullAt from './array/pullAt';
|
||||
import remove from './array/remove';
|
||||
import rest from './array/rest';
|
||||
import slice from './array/slice';
|
||||
import sortedIndex from './array/sortedIndex';
|
||||
import sortedLastIndex from './array/sortedLastIndex';
|
||||
import tail from './array/tail';
|
||||
import take from './array/take';
|
||||
import takeRight from './array/takeRight';
|
||||
import takeRightWhile from './array/takeRightWhile';
|
||||
import takeWhile from './array/takeWhile';
|
||||
import union from './array/union';
|
||||
import uniq from './array/uniq';
|
||||
import unique from './array/unique';
|
||||
import unzip from './array/unzip';
|
||||
import without from './array/without';
|
||||
import xor from './array/xor';
|
||||
import zip from './array/zip';
|
||||
import zipObject from './array/zipObject';
|
||||
|
||||
export default {
|
||||
'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