i18n interests, allow for fallbacks (#2692)

This commit is contained in:
Eric Bailey
2024-01-30 17:04:54 -06:00
committed by GitHub
parent 4058174678
commit bb7ce215f7
9 changed files with 103 additions and 56 deletions
+3
View File
@@ -0,0 +1,3 @@
export function capitalize(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1)
}