{%= description %}
Based on [mout's][mout] implementation of intersection
.
Install with NPM {%= include("install-npm", {save: true}) %}
Install with Bower {%= include("install-bower", {save: true}) %}
var intersection = require('{%= name %}');
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']
{%= related(Object.keys(dependencies).concat(['arr-union'])) %}
{%= include("tests") %}
{%= include("contributing") %}
{%= include("author") %}
{%= copyright() %} {%= license() %}
{%= include("footer") %}
{%= reflinks(['mout']) %}