Shallow key normalisation for maps entering from external sources.
Summary
Functions
Recursively converts atom keys to string keys across nested maps/lists.
Converts atom keys to string keys (one level deep).
Functions
Recursively converts atom keys to string keys across nested maps/lists.
Converts atom keys to string keys (one level deep).
iex> CodexEx.MapHelpers.stringify_keys(%{"bar" => 2, foo: 1})
%{"foo" => 1, "bar" => 2}