UNPKG

@feugene/mu

Version:

Helpful TS utilities without dependencies

9 lines 274 B
/** * The difference will output the elements from array A that are not in the array B. * * @param {Array} array * @param {Array} array2 * @returns {any[]} */ export default function difference<T>(array: T[], array2: T[]): T[]; //# sourceMappingURL=difference.d.ts.map