luckydrq / common-elements

Find common elements in multiple arrays

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

common-elements

NPM version build status Test coverage

Find common elements in multiple arrays

Example

var getCommon = require('common-elements');
var commonArr = getCommon([1, 2, 3], [2, 3], [2, 3, 4]);
console.log(commonArr); // [2, 3]

Lisence

MIT

About

Find common elements in multiple arrays


Languages

Language:JavaScript 100.0%