Skip to content

Files

Latest commit

6e48ac2 · Feb 13, 2020

History

History

array-union

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 13, 2020
Feb 13, 2020
Feb 13, 2020
Feb 13, 2020

array-union Build Status

Create an array of unique values, in order, from the input arrays

Install

$ npm install --save array-union

Usage

const arrayUnion = require('array-union');

arrayUnion([1, 1, 2, 3], [2, 3]);
//=> [1, 2, 3]

arrayUnion(['foo', 'foo', 'bar'], ['foo']);
//=> ['foo', 'bar']

License

MIT © Sindre Sorhus