UNPKG

sly-utils

Version:

sly-utils is a modular and efficient JavaScript utility library designed to simplify complex tasks.

13 lines (12 loc) 256 B
/** * Returns the common elements of 2 arrays in a new array * @param {array} * @param {array} * * @example * * intersection([1, 2, 3, 4], [2, 4, 6, 8]); * // => [2, 4] * */ export declare const intersection: (arr1: any[], arr2: any[]) => any[];