mirror of
https://github.com/sussy-code/providers.git
synced 2026-08-14 19:25:12 +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;
|
|
}
|