Skip to content

Instantly share code, notes, and snippets.

@ppscvalentin
Created July 26, 2017 19:53
Show Gist options
  • Save ppscvalentin/1edcdf0801a38ab2a549c9b109bb562f to your computer and use it in GitHub Desktop.
Save ppscvalentin/1edcdf0801a38ab2a549c9b109bb562f to your computer and use it in GitHub Desktop.
queryString.js
function encodeQueryData(data) {
var ret = [];
for (let d in data)
ret.push(encodeURIComponent(d) + '=' + encodeURIComponent(data[d]));
return ret.join('&');
}
{
"first name": "George",
"last name": "Jetson",
"age": 110
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment