mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
Fix camel case fails if name starts with _
This commit is contained in:
parent
d12e84f264
commit
f994d2f6cf
@ -886,7 +886,7 @@ func formatSourceCode(filename string) {
|
|||||||
func camelCase(in string) string {
|
func camelCase(in string) string {
|
||||||
tokens := strings.Split(in, "_")
|
tokens := strings.Split(in, "_")
|
||||||
for i := range tokens {
|
for i := range tokens {
|
||||||
tokens[i] = strings.ToUpper(tokens[i][:1]) + tokens[i][1:]
|
tokens[i] = strings.Title(strings.Trim(tokens[i], " "))
|
||||||
}
|
}
|
||||||
return strings.Join(tokens, "")
|
return strings.Join(tokens, "")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user