Bump to v4.1.0.

This commit is contained in:
John-David Dalton
2016-01-28 01:19:04 -08:00
parent 7af5d55f22
commit 466c67a8b6
438 changed files with 1053 additions and 896 deletions

View File

@@ -1,7 +1,7 @@
import arrayReduce from './internal/arrayReduce';
import baseEach from './internal/baseEach';
import baseIteratee from './internal/baseIteratee';
import baseReduce from './internal/baseReduce';
import arrayReduce from './_arrayReduce';
import baseEach from './_baseEach';
import baseIteratee from './_baseIteratee';
import baseReduce from './_baseReduce';
import isArray from './isArray';
/**
@@ -30,7 +30,7 @@ import isArray from './isArray';
*
* _.reduce([1, 2], function(sum, n) {
* return sum + n;
* });
* }, 0);
* // => 3
*
* _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {