Helpers to handle URL.
Parses an URL.
@spec parse(String.t()) :: map()
URL.parse("http://www.example.com/?say=hi#mom") # Returns: # # %{ # scheme: :http, # host: "www.example.com", # port: 80, # path: "/", # query: "say=hi", # fragment: "mom" # }