UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 152 B
/** * Returns the intersection between the two input arrays */ declare const intersect: (a: any[], b: any[]) => any[]; export default intersect;