@newdash/newdash
Version:
javascript/typescript utility library
25 lines (24 loc) • 820 B
TypeScript
/**
* This method is like `difference` except that it accepts `comparator`
* which is invoked to compare elements of `array` to `values`. The order and
* references of result values are determined by the first array. The comparator
* is invoked with two arguments: (arrVal, othVal).
*
* **Note:** Unlike `pullAllWith`, this method returns a new array.
*
* @since 5.9.0
* @category Array
* @param array The array to inspect.
* @param values The values to exclude.
* @returns Returns the new array of filtered values.
* @example
*
* ```js
* const objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]
*
* differenceWith(objects, [{ 'x': 1, 'y': 2 }], isEqual)
* // => [{ 'x': 2, 'y': 1 }]
* ```
*/
export declare function differenceWith(array: any, ...values: any[]): any;
export default differenceWith;