Home > @easyops-cn/brick-next-pipes > uniq
uniq() function
获取一个数组去重后的新数组。
Array
Signature:
export declare function uniq<T>(array: T[]): T[];
Parameters
Parameter | Type | Description |
---|---|---|
array | T[] | 数组。 |
Returns:
T[]
去重后的数组。
Remarks
透传调用 _.uniq。
Example
uniq([2, 1, 2]);
// => [2, 1]