Files
collection.ts/src/collection/sortedBy.ts
2026-04-29 18:24:32 +02:00

4 lines
145 B
TypeScript

export function sortedBy<T>(value: T[], transform: (it: T) => number): T[] {
return value.toSorted((a, b) => transform(a) - transform(b));
}