Skip to main content
Module

x/lodash_es/mod.ts>uniqWith

lodash for deno use
Latest
function uniqWith
import { uniqWith } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

This method is like _.uniq except that it accepts comparator which is invoked to compare elements of array. The order of result values is determined by the order they occur in the array.The comparator is invoked with two arguments: (arrVal, othVal).

Examples

var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];

_.uniqWith(objects, _.isEqual); // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]

Parameters

array

The array to inspect.

comparator