Bump to v4.14.0.

This commit is contained in:
John-David Dalton
2016-07-24 09:52:22 -07:00
parent 6b3e0da93c
commit 51ed7e7707
231 changed files with 1136 additions and 820 deletions

View File

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