mirror of
https://github.com/immich-app/immich.git
synced 2025-12-13 09:13:17 +03:00
9 lines
206 B
Dart
9 lines
206 B
Dart
import 'dart:math' as math;
|
|
|
|
extension DoubleTruncate on double {
|
|
double truncateTo(int fractionDigits) {
|
|
final mod = math.pow(10.0, fractionDigits);
|
|
return ((this * mod).truncate() / mod);
|
|
}
|
|
}
|