Files
lodash/array/union.js
2015-05-24 01:42:23 -07:00

25 lines
715 B
JavaScript

import baseFlatten from '../internal/baseFlatten';
import baseUniq from '../internal/baseUniq';
import restParam from '../function/restParam';
/**
* Creates an array of unique values, in order, from all of the provided arrays
* using [`SameValueZero`](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
* for equality comparisons.
*
* @static
* @memberOf _
* @category Array
* @param {...Array} [arrays] The arrays to inspect.
* @returns {Array} Returns the new array of combined values.
* @example
*
* _.union([1, 2], [4, 2], [2, 1]);
* // => [1, 2, 4]
*/
var union = restParam(function(arrays) {
return baseUniq(baseFlatten(arrays, false, true));
});
export default union;