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