Skip to content

Instantly share code, notes, and snippets.

@pixelbacon
Created December 20, 2018 14:56
Show Gist options
  • Save pixelbacon/5f29e06fb7c066795c2acb36e6645868 to your computer and use it in GitHub Desktop.
Save pixelbacon/5f29e06fb7c066795c2acb36e6645868 to your computer and use it in GitHub Desktop.
export function intersection(a, aa) {
return a.filter(item => aa.includes(item));
}
export function intersects(a, aa) {
return !!intersection(a, aa).length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment