improve first upper case for ToLowerCamel

This commit is contained in:
takuoki 2018-06-04 09:47:14 +09:00
parent 6b1e2b920d
commit 541756bf96
2 changed files with 9 additions and 0 deletions

View File

@ -38,5 +38,11 @@ func ToCamel(s string) string {
}
func ToLowerCamel(s string) string {
if s == "" {
return s
}
if r := rune(s[0]); r >= 'A' && r <= 'Z' {
s = strings.ToLower(string(r)) + s[1:]
}
return toCamelInitCase(s, false)
}

View File

@ -29,6 +29,9 @@ func TestToCamel(t *testing.T) {
func TestToLowerCamel(t *testing.T) {
cases := [][]string{
[]string{"foo-bar", "fooBar"},
[]string{"TestCase", "testCase"},
[]string{"", ""},
[]string{"AnyKind of_string", "anyKindOfString"},
}
for _, i := range cases {
in := i[0]