mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
4 lines
113 B
TypeScript
4 lines
113 B
TypeScript
export function hasDuplicates<T>(values: Array<T>): boolean {
|
|
return new Set(values).size !== values.length;
|
|
}
|