mirror of
https://github.com/foss42/apidash.git
synced 2025-05-22 08:46:33 +08:00
13 lines
260 B
Dart
13 lines
260 B
Dart
extension StringExtension on String {
|
|
String capitalize() {
|
|
return "${this[0].toUpperCase()}${substring(1).toLowerCase()}";
|
|
}
|
|
|
|
String clip(int limit) {
|
|
if (length <= limit) {
|
|
return this;
|
|
}
|
|
return "${substring(0, limit)}...";
|
|
}
|
|
}
|