Package Exports
- array-intersection
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (array-intersection) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
array-intersection 
Return an array with the unique values present in all given arrays using strict equality for comparisons.
Based on mout's implementation of intersection.
Install with npm
npm i array-intersection --saveInstall with bower
bower install array-intersection --saveUsage
var intersection = require('array-intersection');
intersection(['a', 'a', 'c'])
//=> ['a', 'c']
intersection(['a', 'b', 'c'], ['b', 'c', 'e'])
//=> ['b', 'c']
intersection(['a', 'b', 'c'], ['b', 'c', 'e'], ['b', 'c', 'e'])
//=> ['b', 'c']Run tests
npm testAuthor
Jon Schlinkert
License
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on December 12, 2014. To update, run npm i -g verb && verb.