Cldr.Map.underscore_keys

You're seeing just the function underscore_keys, go back to Cldr.Map module for more information.
Link to this function

underscore_keys(map, options \\ [])

View Source

Convert map String.t keys from camelCase to snake_case

Example

iex> Cldr.Map.underscore_keys %{"a" => %{"thisOne" => "value"}}
%{"a" => %{"this_one" => "value"}}