HaXeho e0dad002ed first commit 10 ay önce
..
index.d.ts e0dad002ed first commit 10 ay önce
index.js e0dad002ed first commit 10 ay önce
license e0dad002ed first commit 10 ay önce
package.json e0dad002ed first commit 10 ay önce
readme.md e0dad002ed first commit 10 ay önce

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