Return the intersection between two sets.
npm install @sets/intersectionReturn the intersection between two sets.
``javascript
const intersection = require('@sets/intersection')
console.log(intersection(
new Set('hello'),
new Set('world')
)) // "lo"
`
``
$ npm install --save @sets/intersection
Return the intersection between the sets represented by lhs and rhs. Thelhs
resulting set will contain all elements that appear in both and rhs`.
MIT