NodePing.Helpers.merge_querystrings
You're seeing just the function
merge_querystrings
, go back to NodePing.Helpers module for more information.
Takes querystrings for a URL and merges them into a single string
Parameters
querystrings
- A list of tuples where the first value is anAtom
for the key, and the second is the value
Examples
iex> NodePing.Helpers.merge_querystrings([{:hello, "world"}, {:sample, "data"}])
"?hello=world&sample=data"