iancoleman / strcase

A golang package for converting to snake_case or CamelCase
MIT License
1.01k stars 106 forks source link

Improve ToLowerCamel() #8

Closed takuoki closed 6 years ago

takuoki commented 6 years ago

In the current ToLowerCamel(), there is an issue about string with initial letters capitalized.

"TestCase" -> "TestCase"

In this case, I guess ToLowerCamel() should return "testCase".

@iancoleman Do you have any idea about this issue?

takuoki commented 6 years ago

I'm sorry, but I found that this algorism is not good, because the condition exist in loop. I'll request other PR.