mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
9 lines
214 B
Dart
9 lines
214 B
Dart
extension StringExtension on String {
|
|
String capitalize() {
|
|
return split(" ")
|
|
.map(
|
|
(str) => str.isEmpty ? str : str[0].toUpperCase() + str.substring(1),
|
|
)
|
|
.join(" ");
|
|
}
|
|
}
|