Bump to v4.2.0.

This commit is contained in:
John-David Dalton
2016-02-01 23:15:49 -08:00
parent 466c67a8b6
commit 365d103439
65 changed files with 167 additions and 151 deletions

View File

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