1.0.1 • Published 7 years ago

@sets/union v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

@sets/union

Return the union between two sets.

const union = require('@sets/union')

console.log(union(
  new Set('hello'),
  new Set('world')
)) // "helowrd"

Installation

$ npm install --save @sets/union

API

union(lhs, rhs) -> Set

Return the union between the sets represented by lhs and rhs. The resulting set will contain all elements that appear in either lhs and rhs.

License

MIT