1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-04 02:46:47 +01:00

fix(mobile): format

This commit is contained in:
Alex Tran 2023-06-27 12:28:15 -05:00
parent 053a5235be
commit 0e8d235148

View file

@ -1,9 +1,9 @@
extension StringExtension on String { extension StringExtension on String {
String capitalize() { String capitalize() {
return this return split(" ")
.split(" ") .map(
.map((str) => (str) => str.isEmpty ? str : str[0].toUpperCase() + str.substring(1),
str.isEmpty ? str : str[0].toUpperCase() + str.substring(1)) )
.join(" "); .join(" ");
} }
} }