Bump to v4.7.0.

This commit is contained in:
John-David Dalton
2016-03-26 00:00:36 -07:00
parent a83b4ebd53
commit ce0b51888c
394 changed files with 1789 additions and 841 deletions

View File

@@ -7,6 +7,8 @@ import filter from './filter';
import find from './find';
import findLast from './findLast';
import flatMap from './flatMap';
import flatMapDeep from './flatMapDeep';
import flatMapDepth from './flatMapDepth';
import forEach from './forEach';
import forEachRight from './forEachRight';
import groupBy from './groupBy';
@@ -28,9 +30,9 @@ import sortBy from './sortBy';
export default {
at, countBy, each, eachRight, every,
filter, find, findLast, flatMap, forEach,
forEachRight, groupBy, includes, invokeMap, keyBy,
map, orderBy, partition, reduce, reduceRight,
reject, sample, sampleSize, shuffle, size,
some, sortBy
filter, find, findLast, flatMap, flatMapDeep,
flatMapDepth, forEach, forEachRight, groupBy, includes,
invokeMap, keyBy, map, orderBy, partition,
reduce, reduceRight, reject, sample, sampleSize,
shuffle, size, some, sortBy
};