Azurex.Blob.Config.parse_connection_string
You're seeing just the function
parse_connection_string
, go back to Azurex.Blob.Config module for more information.
Specs
Parses a connection string to a key value map.
Examples
iex> parse_connection_string("Key=value")
%{"Key" => "value"}
iex> parse_connection_string("Key1=hello;Key2=world")
%{"Key1" => "hello", "Key2" => "world"}
iex> parse_connection_string(nil)
%{}