mirror of
https://github.com/p-stream/providers.git
synced 2026-04-14 09:30:22 +00:00
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
export function hasDuplicates<T>(values: Array<T>): boolean {
|
|
return new Set(values).size !== values.length;
|
|
}
|