mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
14 lines
244 B
Go
14 lines
244 B
Go
package txt
|
|
|
|
import (
|
|
"unicode"
|
|
)
|
|
|
|
// UpperFirst returns the string with the first character converted to uppercase.
|
|
func UpperFirst(str string) string {
|
|
for i, v := range str {
|
|
return string(unicode.ToUpper(v)) + str[i+1:]
|
|
}
|
|
return ""
|
|
}
|