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,4 @@
import rest from './rest.js';
import baseRest from './_baseRest.js';
import unzipWith from './unzipWith.js';
/**
@@ -20,7 +20,7 @@ import unzipWith from './unzipWith.js';
* });
* // => [111, 222]
*/
var zipWith = rest(function(arrays) {
var zipWith = baseRest(function(arrays) {
var length = arrays.length,
iteratee = length > 1 ? arrays[length - 1] : undefined;