1.0.0 • Published 7 years ago

set-union v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

set-union Build Status

Creates a new Set from the union of two Sets or arrays

Install

$ npm install --save set-union

Usage

const union = require('set-union');

union(new Set([1, 2, 3]), new Set([2, 3, 4]));
// => Set { 1, 2, 3, 4 }

union([1, 2, 3], [2, 3, 4]);
// => Set { 1, 2, 3, 4 }

API

union(set1, set2)

Will return a new Set containing the elements contained in both set1 and set2. set1 and set2 must be Iterables, like arrays and Sets are.

License

MIT © Jeroen Engels