NodePing.Helpers.merge_querystrings

You're seeing just the function merge_querystrings, go back to NodePing.Helpers module for more information.
Link to this function

merge_querystrings(querystrings)

View Source

Takes querystrings for a URL and merges them into a single string

Parameters

  • querystrings - A list of tuples where the first value is an Atom for the key, and the second is the value

Examples

iex> NodePing.Helpers.merge_querystrings([{:hello, "world"}, {:sample, "data"}])
"?hello=world&sample=data"