Skip to content

Instantly share code, notes, and snippets.

@sslotsky
Created August 30, 2018 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sslotsky/198a827b79e0faa92608fc8ee30a29a1 to your computer and use it in GitHub Desktop.
Save sslotsky/198a827b79e0faa92608fc8ee30a29a1 to your computer and use it in GitHub Desktop.
function postData(url, data) {
return fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json; charset=utf-8"
},
body: JSON.stringify(data)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment