array-union-x
Creates an array of unique values, in order, from all given arrays.
Version: 2.0.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
module.exports([...array])
⇒ array
⏏
This method creates an array of unique values, in order, from all given arrays using SameValueZero for equality comparisons.
Kind: Exported function
Returns: array
- Returns the new array of combined values.
Param | Type | Description |
---|---|---|
[...array] | array |
The arrays to inspect. |
Example
; console; // => [2, 1]