Map helpers.
has(m {str: T}, key str) -> bool: Returns true ifkeyexists.keys(m {str: T}) -> [str]: Returns list of keys.values(m {str: T}) -> [T]: Returns list of values.
load map
cfg = {"env": "dev"}
if map.has(cfg, "env"):
out(cfg["env"])