treat next letter after .
as cap
Esse commit está contido em:
pai
e506e3ef73
commit
689d515138
2
camel.go
2
camel.go
@ -49,7 +49,7 @@ func toCamelInitCase(s string, initCase bool) string {
|
||||
n += string(v)
|
||||
}
|
||||
}
|
||||
if v == '_' || v == ' ' || v == '-' {
|
||||
if v == '_' || v == ' ' || v == '-' || v == '.' {
|
||||
capNext = true
|
||||
} else {
|
||||
capNext = false
|
||||
|
Carregando…
Referência em uma nova issue
Block a user