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.
Link to this function

parse_connection_string(connection_string)

View Source

Specs

parse_connection_string(nil | binary()) :: map()

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)
%{}