mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
716 B
25 lines
716 B
10 years ago
|
var baseFlatten = require('../internal/baseFlatten'),
|
||
|
baseUniq = require('../internal/baseUniq'),
|
||
|
restParam = require('../function/restParam');
|
||
|
|
||
|
/**
|
||
10 years ago
|
* Creates an array of unique values, in order, from all of the provided arrays
|
||
9 years ago
|
* using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
|
||
10 years ago
|
* 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));
|
||
|
});
|
||
|
|
||
|
module.exports = union;
|