Documentation for Sortkeys.
Sortkeys
Recursively sorts the keys of a map.
@spec sort(map()) :: map()
iex> Sortkeys.sort(%{b: 0, a: %{b: %{b: 0, a: 0}, a: 1}, c: 0}) %{a: %{a: 1, b: %{a: 0, b: 0}}, b: 0, c: 0}