Current section
Files
Jump to
Current section
Files
lib/elixir_xml_to_map.ex
defmodule XmlToMap do
alias XmlToMap.NaiveMap
def naive_map(xml) do
{:ok, tuples, _} = :erlsom.simple_form(xml)
NaiveMap.parse(tuples)
end
end