Skip to content

Instantly share code, notes, and snippets.

@sgaurav
Last active September 19, 2015 18:28
Show Gist options
  • Save sgaurav/5ef69acae8bccbb74bf8 to your computer and use it in GitHub Desktop.
Save sgaurav/5ef69acae8bccbb74bf8 to your computer and use it in GitHub Desktop.
function serialize(data) {
return Object.keys(data).map(function (keyName) {
return encodeURIComponent(keyName) + '=' + encodeURIComponent(data[keyName])
}).join('&');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment