DarkMatter.Inflections.camelize

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

Specs

camelize(String.t()) :: String.t()

Returns the pascal case version of the string

Examples

iex> camelize("foo_bar")
"fooBar"

iex> camelize("foo")
"foo"

iex> camelize("__foo_bar")
"fooBar"

iex> camelize("__foo")
"foo"

iex> camelize("_foo")
"foo"