3.1.2 • Published 5 years ago

array-union-x v3.1.2

Weekly downloads
47
License
MIT
Repository
github
Last release
5 years ago

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.

ParamTypeDescription
...arrayarrayThe arrays to inspect.

Example

import union from 'array-union-x';

console.log(union([2], [1, 2])); // => [2, 1]
3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.18

5 years ago

3.0.17

5 years ago

3.0.16

5 years ago

3.0.15

5 years ago

3.0.14

5 years ago

3.0.13

5 years ago

3.0.12

5 years ago

3.0.11

5 years ago

3.0.10

5 years ago

3.0.9

5 years ago

3.0.8

5 years ago

3.0.7

5 years ago

3.0.6

5 years ago

3.0.5

5 years ago

3.0.4

5 years ago

3.0.3

5 years ago

3.0.2

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.0.0

7 years ago

1.0.0

7 years ago