UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 192 B
/** * Return a new Array with elements common to all Arrays. * - based on underscore.js implementation */ declare function intersection(arr: any): any[]; export default intersection;