mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
var baseDifference = require('../internal/baseDifference'),
|
|
baseFlatten = require('../internal/baseFlatten'),
|
|
isArguments = require('../lang/isArguments'),
|
|
isArray = require('../lang/isArray');
|
|
|
|
/**
|
|
* Creates an array excluding all values of the provided arrays using
|
|
* `SameValueZero` for equality comparisons.
|
|
*
|
|
* **Note:** `SameValueZero` comparisons are like strict equality comparisons,
|
|
* e.g. `===`, except that `NaN` matches `NaN`. See the
|
|
* [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
|
|
* for more details.
|
|
*
|
|
* @static
|
|
* @memberOf _
|
|
* @category Array
|
|
* @param {Array} array The array to inspect.
|
|
* @param {...Array} [values] The arrays of values to exclude.
|
|
* @returns {Array} Returns the new array of filtered values.
|
|
* @example
|
|
*
|
|
* _.difference([1, 2, 3], [4, 2]);
|
|
* // => [1, 3]
|
|
*/
|
|
function difference() {
|
|
var args = arguments,
|
|
index = -1,
|
|
length = args.length;
|
|
|
|
while (++index < length) {
|
|
var value = args[index];
|
|
if (isArray(value) || isArguments(value)) {
|
|
break;
|
|
}
|
|
}
|
|
return baseDifference(value, baseFlatten(args, false, true, ++index));
|
|
}
|
|
|
|
module.exports = difference;
|