Current section

Files

Jump to
circlex_api lib circlex struct util.ex
Raw

lib/circlex/struct/util.ex

defmodule Circlex.Struct.Util do
def fetch(m, key) do
case Map.get(m, key) do
nil ->
Map.get(m, to_string(key))
els ->
els
end
end
end