Skip to content

Instantly share code, notes, and snippets.

@cored
Last active February 13, 2018 23:41
Show Gist options
  • Save cored/e18216fcab64ef903d3ec304ae50016e to your computer and use it in GitHub Desktop.
Save cored/e18216fcab64ef903d3ec304ae50016e to your computer and use it in GitHub Desktop.
def parse_headers(header_lines) do
Enum.reduce(header_lines, %{}, fn(line, headers) ->
[key, value] = String.split(line, ":")
Map.put(headers, key, value)
end)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment