|
|
@@ -11,6 +11,7 @@ import dropWhile from './dropWhile';
|
|
|
import fill from './fill';
|
|
|
import findIndex from './findIndex';
|
|
|
import findLastIndex from './findLastIndex';
|
|
|
+import first from './first';
|
|
|
import flatten from './flatten';
|
|
|
import flattenDeep from './flattenDeep';
|
|
|
import flattenDepth from './flattenDepth';
|
|
|
@@ -66,15 +67,15 @@ import zipWith from './zipWith';
|
|
|
export default {
|
|
|
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, nth, 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
|
|
|
+ fill, findIndex, findLastIndex, first, flatten,
|
|
|
+ flattenDeep, flattenDepth, fromPairs, head, indexOf,
|
|
|
+ initial, intersection, intersectionBy, intersectionWith, join,
|
|
|
+ last, lastIndexOf, nth, 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
|
|
|
};
|