UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 159 B
/** * Returns the intersection between the two input sets */ declare const intersect: (a: Set<any>, b: Set<any>) => Set<any>; export default intersect;