Cldr.Map.remove_leading_underscores

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

remove_leading_underscores(map, options \\ [])

View Source

Removes any leading underscores from map String.t keys.

Examples

iex> Cldr.Map.remove_leading_underscores %{"a" => %{"_b" => "b"}}
%{"a" => %{"b" => "b"}}