UNPKG

rhodash

Version:

A deadly simple alternative to lodash

7 lines 215 B
/** * Create an array with duplicate elements removed. * * @example uniq([1, 2, 1, 1, 2, 3, 4]) // => [1, 2, 3, 4] */ export declare function uniq<T>(array: readonly T[]): T[]; //# sourceMappingURL=uniq.d.ts.map