A library to convert strings, atoms and map keys between camelCase,
snake_case and kebab-case.
The package can be installed by adding conv_case to your list of dependencies
in mix.exs:
def deps do
[
{:conv_case, "~> 0.1.0"}
]
endDocumentation can be found at https://hexdocs.pm/conv_case.
If this package fits not your requirements then take a look here:
- Macro.camelize/1 and Macro.underscore/1
- ReCase helps you to convert a string from any case to any case.
- ProperCase an Elixir library that converts keys in maps between snake_case and camel_case.