mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
25 lines
644 B
JavaScript
25 lines
644 B
JavaScript
import arrayFilter from './_arrayFilter';
|
|
import baseXor from './_baseXor';
|
|
import isArrayLikeObject from './isArrayLikeObject';
|
|
import rest from './rest';
|
|
|
|
/**
|
|
* Creates an array of unique values that is the [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)
|
|
* of the provided arrays.
|
|
*
|
|
* @static
|
|
* @memberOf _
|
|
* @category Array
|
|
* @param {...Array} [arrays] The arrays to inspect.
|
|
* @returns {Array} Returns the new array of values.
|
|
* @example
|
|
*
|
|
* _.xor([2, 1], [4, 2]);
|
|
* // => [1, 4]
|
|
*/
|
|
var xor = rest(function(arrays) {
|
|
return baseXor(arrayFilter(arrays, isArrayLikeObject));
|
|
});
|
|
|
|
export default xor;
|