Bump to v4.13.0.

This commit is contained in:
John-David Dalton
2016-05-18 16:00:35 -07:00
parent 07c844053e
commit 35cdf6513b
513 changed files with 2603 additions and 2423 deletions

View File

@@ -1,6 +1,6 @@
import baseDifference from './_baseDifference';
import isArrayLikeObject from './isArrayLikeObject';
import rest from './rest';
import baseDifference from './_baseDifference.js';
import isArrayLikeObject from './isArrayLikeObject.js';
import rest from './rest.js';
/**
* Creates an array excluding all given values using
@@ -17,7 +17,7 @@ import rest from './rest';
* @see _.difference, _.xor
* @example
*
* _.without([1, 2, 1, 3], 1, 2);
* _.without([2, 1, 2, 3], 1, 2);
* // => [3]
*/
var without = rest(function(array, values) {