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

4 lines
120 B
TypeScript

export function sortedWith<T>(value: T[], compare: (a: T, b: T) => number): T[] {
return value.toSorted(compare);
}