Packages

A collection of helpers to operate on nested maps. See README for the complete list of helpers. The test suite is also helpful.

Current section

Files

Jump to
digger lib impl any.ex
Raw

lib/impl/any.ex

defimpl Digger, for: Any do
def atomize(any, _opts), do: any
def camel_case(any, _), do: any
def dasherize(any, _opts), do: any
def flatten(any, _opts), do: any
def lowercase_first(any, _opts), do: any
def snake_case(any, _opts), do: any
def stringify(any, _), do: any
def unflatten(any, _opts), do: any
def upcase_first(any, _opts), do: any
end