mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
4 lines
146 B
TypeScript
4 lines
146 B
TypeScript
export function toUniqueSortedLimited(values: string[], limit: number): string[] {
|
|
return Array.from(new Set(values)).sort().slice(0, limit);
|
|
}
|