mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-18 09:11:34 -05:00
2 lines
81 B
TypeScript
2 lines
81 B
TypeScript
export const hasNoDuplicates = (arr: any[]) => new Set(arr).size === arr.length;
|