intersection-of

Find unique common elements among given arrays

Usage no npm install needed!

<script type="module">
  import intersectionOf from 'https://cdn.skypack.dev/intersection-of';
</script>

README

intersection-of

CircleCI NPM Downloads node License MIT

Find unique common elements among given arrays

Highlights

  • Super Fast

  • Memoized

  • Written in Typescript

  • Async and Sync methods

  • Returns Promise

Usage

Get an array of common unique values that are included in all given arrays


// async

const { intersectionOf } = require('intersection-of');

intersectionOf([1,2,2,3,4], [2,3,6,7])
.then((result) => {
  console.log(result); // [2,3]
});


// sync
const { intersectionOfSync }  = require('intersection-of');

let result = intersectionOfSync([1,2,2,3,4], [2,3,6,7]);
console.log(result) // [2,3]

License

MIT © Nivrith Mandayam Gomatam