XuelesszzZ 94af2b8e7b 6-30-5 | пре 1 година | |
---|---|---|
.. | ||
index.js | пре 1 година | |
license | пре 1 година | |
package.json | пре 1 година | |
readme.md | пре 1 година |
Create an array of unique values, in order, from the input arrays
$ npm install --save array-union
const arrayUnion = require('array-union');
arrayUnion([1, 1, 2, 3], [2, 3]);
//=> [1, 2, 3]
arrayUnion(['foo', 'foo', 'bar'], ['foo']);
//=> ['foo', 'bar']
MIT © Sindre Sorhus