iancoleman / strcase

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

separate ToUpperCamel and ToLowerCamel functions? #2

Closed jbcpollak closed 7 years ago

jbcpollak commented 7 years ago

It would be nice to be able to do:

strcase.toLowerCamel("foo-bar"); // returns "fooBar"
iancoleman commented 7 years ago

Fixed in closed PR https://github.com/iancoleman/strcase/pull/3