mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
4 lines
97 B
Dart
4 lines
97 B
Dart
|
|
extension Let<T extends Object> on T {
|
||
|
|
R let<R>(R Function(T) transform) => transform(this);
|
||
|
|
}
|