3.1.2 • Published 6 years ago
array-union-x v3.1.2
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
import union from 'array-union-x';
console.log(union([2], [1, 2])); // => [2, 1]
3.1.2
6 years ago
3.1.1
6 years ago
3.1.0
6 years ago
3.0.18
6 years ago
3.0.17
6 years ago
3.0.16
6 years ago
3.0.15
6 years ago
3.0.14
6 years ago
3.0.13
6 years ago
3.0.12
6 years ago
3.0.11
6 years ago
3.0.10
6 years ago
3.0.9
6 years ago
3.0.8
6 years ago
3.0.7
6 years ago
3.0.6
6 years ago
3.0.5
6 years ago
3.0.4
6 years ago
3.0.3
6 years ago
3.0.2
6 years ago
3.0.1
6 years ago
3.0.0
6 years ago
2.0.0
8 years ago
1.0.0
8 years ago