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