DarkMatter.Inflections.absinthe_camelize
You're seeing just the function
absinthe_camelize
, go back to DarkMatter.Inflections module for more information.
Specs
Returns the camel case version of the string
Examples
iex> absinthe_camelize("foo_bar")
"fooBar"
iex> absinthe_camelize("foo")
"foo"
iex> absinthe_camelize("__foo_bar")
"__fooBar"
iex> absinthe_camelize("__foo")
"__foo"
iex> absinthe_camelize("_foo")
"_foo"