elm-community / string-extra

String helper functions for Elm.
http://package.elm-lang.org/packages/elm-community/string-extra/latest
BSD 3-Clause "New" or "Revised" License
34 stars 26 forks source link

camelize output is unexpected. #49

Open janwirth opened 3 years ago

janwirth commented 3 years ago

Case 1: preserving unwanted special characters I expect camelize ".hello world" --> "helloWorld" Currently it is camelize ".hello world" --> ".helloWorld"

Case 2: preserving unwanted special characters I expect camelize "hello world" --> "helloWorld" Currently it is camelize "hello world" --> "HelloWorld"

It does the same as classify... except it preserves special characters