DarkMatter.Inflections.absinthe_camelize

You're seeing just the function absinthe_camelize, go back to DarkMatter.Inflections module for more information.
Link to this function

absinthe_camelize(binary)

View Source

Specs

absinthe_camelize(String.t()) :: String.t()

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"