Files
lodash/array.js
2015-02-12 21:30:09 -08:00

84 lines
2.4 KiB
JavaScript

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 fill from './array/fill';
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,
'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,
'without': without,
'xor': xor,
'zip': zip,
'zipObject': zipObject
};