1.3.0 • Published 5 years ago

intersection-of v1.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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