Skip to content

Instantly share code, notes, and snippets.

@rakibulalam
Created January 11, 2019 19:26
Show Gist options
  • Save rakibulalam/83af9fde5bc54f1bc8c4511d7c91d7a2 to your computer and use it in GitHub Desktop.
Save rakibulalam/83af9fde5bc54f1bc8c4511d7c91d7a2 to your computer and use it in GitHub Desktop.
httpBuildQuery
static httpBuildQuery(data = {}) {
return Object.keys(data)
.map((k) => {
return encodeURIComponent(k) + '=' + encodeURIComponent(data[k]);
})
.join('&');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment