iancoleman / strcase

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

ToCamel should upcase after ignored characters #50

Open hlindberg opened 11 months ago

hlindberg commented 11 months ago

When running these:

strcase.ToCamel("st(range)")
strcase.ToCamel("st (range)")

I expect the result to be StRange. Now you get Strange

That is strange 👻