unique-concat

Concatenates two arrays, removing duplicates in the process and returns one array with unique values.

7 个版本
安装
npm install unique-concat
yarn add unique-concat
pnpm add unique-concat
bun add unique-concat
README

unique-concat build status

testling badge

Concatenates two arrays, removing duplicates in the process and returns one array with unique values.

var concat = require('unique-concat');
var res = concat([ 1, 2, 3 ], [ 1, 2, 3, 4, 5, 6])
console.log(res);
// => [1, 2, 3, 4, 5, 6]

Installation

npm install unique-concat

Note

Works only with types that can be properly hashed, which means that they need to have a sensible .toString() implementation

Types that work as expected: int, string

Types that work with caveats: float (if one float is part of the array, all numbers are converted to string)

Types that don't work: object since obj.toString === '[ object ]' for all objects.

For more information see tests

License

MIT

版本列表
0.2.2 2013-07-28
0.2.1 2013-07-28
0.2.0 2013-07-28
0.1.3 2013-07-28
0.1.2 2013-07-28
0.1.1 2013-07-28
0.1.0 2013-07-28