Skip to content

Instantly share code, notes, and snippets.

@abel0b
Created December 27, 2018 23:17
Show Gist options
  • Save abel0b/70e34cb3be65bace27f0b0041b45b644 to your computer and use it in GitHub Desktop.
Save abel0b/70e34cb3be65bace27f0b0041b45b644 to your computer and use it in GitHub Desktop.
async function call(method, path, body) {
const response = await fetch(apiRoot + path, {
method,
body
})
return response
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment