Skip to main content
Module

x/lodash_es/mod.ts>sortedUniq

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

This method is like _.uniq except that it's designed and optimized for sorted arrays.

Examples

_.sortedUniq([1, 1, 2]); // => [1, 2]

Parameters

array

The array to inspect.