Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-09-17 17:52:09 -07:00
parent 1d77dfa4b7
commit 54e7baecc3
675 changed files with 11257 additions and 8085 deletions

View File

@@ -1,87 +1,27 @@
import all from './collection/all';
import any from './collection/any';
import at from './collection/at';
import collect from './collection/collect';
import contains from './collection/contains';
import countBy from './collection/countBy';
import detect from './collection/detect';
import each from './collection/each';
import eachRight from './collection/eachRight';
import every from './collection/every';
import filter from './collection/filter';
import find from './collection/find';
import findLast from './collection/findLast';
import findWhere from './collection/findWhere';
import foldl from './collection/foldl';
import foldr from './collection/foldr';
import forEach from './collection/forEach';
import forEachRight from './collection/forEachRight';
import groupBy from './collection/groupBy';
import include from './collection/include';
import includes from './collection/includes';
import indexBy from './collection/indexBy';
import inject from './collection/inject';
import invoke from './collection/invoke';
import map from './collection/map';
import max from './math/max';
import min from './math/min';
import partition from './collection/partition';
import pluck from './collection/pluck';
import reduce from './collection/reduce';
import reduceRight from './collection/reduceRight';
import reject from './collection/reject';
import sample from './collection/sample';
import select from './collection/select';
import shuffle from './collection/shuffle';
import size from './collection/size';
import some from './collection/some';
import sortBy from './collection/sortBy';
import sortByAll from './collection/sortByAll';
import sortByOrder from './collection/sortByOrder';
import sum from './math/sum';
import where from './collection/where';
export default {
'all': all,
'any': any,
'at': at,
'collect': collect,
'contains': contains,
'countBy': countBy,
'detect': detect,
'each': each,
'eachRight': eachRight,
'every': every,
'filter': filter,
'find': find,
'findLast': findLast,
'findWhere': findWhere,
'foldl': foldl,
'foldr': foldr,
'forEach': forEach,
'forEachRight': forEachRight,
'groupBy': groupBy,
'include': include,
'includes': includes,
'indexBy': indexBy,
'inject': inject,
'invoke': invoke,
'map': map,
'max': max,
'min': min,
'partition': partition,
'pluck': pluck,
'reduce': reduce,
'reduceRight': reduceRight,
'reject': reject,
'sample': sample,
'select': select,
'shuffle': shuffle,
'size': size,
'some': some,
'sortBy': sortBy,
'sortByAll': sortByAll,
'sortByOrder': sortByOrder,
'sum': sum,
'where': where
};
export { default as at } from './at';
export { default as countBy } from './countBy';
export { default as each } from './each';
export { default as eachRight } from './eachRight';
export { default as every } from './every';
export { default as filter } from './filter';
export { default as find } from './find';
export { default as findLast } from './findLast';
export { default as forEach } from './forEach';
export { default as forEachRight } from './forEachRight';
export { default as groupBy } from './groupBy';
export { default as includes } from './includes';
export { default as invokeMap } from './invokeMap';
export { default as keyBy } from './keyBy';
export { default as map } from './map';
export { default as orderBy } from './orderBy';
export { default as partition } from './partition';
export { default as reduce } from './reduce';
export { default as reduceRight } from './reduceRight';
export { default as reject } from './reject';
export { default as sample } from './sample';
export { default as sampleSize } from './sampleSize';
export { default as shuffle } from './shuffle';
export { default as size } from './size';
export { default as some } from './some';
export { default as sortBy } from './sortBy';
export { default as default } from './collection.default';