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,4 +1,4 @@
import basePullAll from './_basePullAll';
import basePullAll from './_basePullAll.js';
/**
* This method is like `_.pull` except that it accepts an array of values to remove.
@@ -14,11 +14,11 @@ import basePullAll from './_basePullAll';
* @returns {Array} Returns `array`.
* @example
*
* var array = [1, 2, 3, 1, 2, 3];
* var array = ['a', 'b', 'c', 'a', 'b', 'c'];
*
* _.pullAll(array, [2, 3]);
* _.pullAll(array, ['a', 'c']);
* console.log(array);
* // => [1, 1]
* // => ['b', 'b']
*/
function pullAll(array, values) {
return (array && array.length && values && values.length)