UNPKG

mout

Version:

Modular Utilities

6 lines (5 loc) 181 B
/** * Return a new Array with elements that aren't present in the other Arrays. */ declare function difference(arr: any, ...others: any[]): any[]; export default difference;