@web3r/flowerkit
Version:
Tree-shakable JavaScript and TypeScript utility library for frontend/browser apps: DOM, events, arrays, objects, strings, date, JSON, and network helpers (ESM/CJS, SSR-friendly).
18 lines (17 loc) • 691 B
text/typescript
export type TGetIntersectionArgs = Parameters<typeof getIntersection>;
export type TGetIntersectionReturn = ReturnType<typeof getIntersection>;
/**
* Gets Array of intersection of two given Arrays
* @template T
* @param {Array<T>} arr1 first source Array
* @param {Array<T>} arr2 second source Array
* @returns {Array<T>}
* @throws {TypeError} getIntersection: arr1 and arr2 must be arrays
* @example
* // How to get an intersection of two Arrays?
* const arr1 = [ 1, 2, 3 ];
* const arr2 = [ 2, 3, 4, 5 ];
* const intersection = getIntersection(arr1, arr2);
* console.log(intersection); // => [ 2, 3 ]
*/
export declare const getIntersection: <T>(arr1: T[], arr2: T[]) => T[];