HaXeho e0dad002ed first commit 10 mesiacov pred
..
index.d.ts e0dad002ed first commit 10 mesiacov pred
index.js e0dad002ed first commit 10 mesiacov pred
license e0dad002ed first commit 10 mesiacov pred
package.json e0dad002ed first commit 10 mesiacov pred
readme.md e0dad002ed first commit 10 mesiacov pred

readme.md

array-union Build Status

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

Install

$ npm install array-union

Usage

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

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

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

arrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);
//=> ['🐱', '🦄', '🐻', '🌈']

arrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);
//=> ['🐱', '🦄', '🐻', '🐶', '🌈']

License

MIT © Sindre Sorhus