HaXeho e0dad002ed first commit 10 ماه پیش
..
index.d.ts e0dad002ed first commit 10 ماه پیش
index.js e0dad002ed first commit 10 ماه پیش
license e0dad002ed first commit 10 ماه پیش
package.json e0dad002ed first commit 10 ماه پیش
readme.md e0dad002ed first commit 10 ماه پیش

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