Bump to v3.8.1.

This commit is contained in:
jdalton
2015-05-19 07:58:05 -07:00
committed by John-David Dalton
parent 9903fcac4d
commit 1eca87b569
11 changed files with 18 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
/**
* lodash 3.8.0 (Custom Build) <https://lodash.com/>
* lodash 3.8.1 (Custom Build) <https://lodash.com/>
* Build: `lodash modern modularize exports="npm" -o ./`
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -28,8 +28,8 @@ var restParam = require('lodash.restparam'),
*/
var zipWith = restParam(function(arrays) {
var length = arrays.length,
iteratee = arrays[length - 2],
thisArg = arrays[length - 1];
iteratee = length > 2 ? arrays[length - 2] : undefined,
thisArg = length > 1 ? arrays[length - 1] : undefined;
if (length > 2 && typeof iteratee == 'function') {
length -= 2;