mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
4 lines
88 B
Dart
4 lines
88 B
Dart
String zeroPadNumStr(int input) {
|
|
return input < 10 ? "0$input" : input.toString();
|
|
}
|