mirror of
https://github.com/krawieck/lemmur/
synced 2024-12-14 17:44:52 +01:00
6 lines
166 B
Dart
6 lines
166 B
Dart
import 'package:intl/intl.dart';
|
|
|
|
String pluralS(int howMany) => howMany == 1 ? '' : 's';
|
|
|
|
String compactNumber(int number) => NumberFormat.compact().format(number);
|