Skip to content

uniq

@tsed/core

Usage

typescript
import { uniq } from "@tsed/core";

See /packages/core/src/utils/uniq.ts.

Overview

ts
function uniq<T = any>(list: T[]): T[];

Description

Returns a new array with duplicate values removed.

Released under the MIT License.