UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

6 lines (5 loc) 283 B
/** * Creates an array of array values not included in the other given array using isEqual for equality comparisons. The order and references * of result values are determined by the first array. */ export declare function difference<T extends any[]>(array: T, values: any[]): T;