mirror of
https://github.com/immich-app/immich.git
synced 2026-01-27 22:27:23 -05:00
5 lines
159 B
Dart
5 lines
159 B
Dart
extension SortIterable<T> on Iterable<T> {
|
|
Iterable<T> sortedBy(Comparable Function(T k) key) =>
|
|
toList()..sort((a, b) => key(a).compareTo(key(b)));
|
|
}
|