Skip to content

Instantly share code, notes, and snippets.

@anthony2025
Created April 5, 2017 19:55
Show Gist options
  • Save anthony2025/5a4d9acdef7c145c942c6b6337636d8b to your computer and use it in GitHub Desktop.
Save anthony2025/5a4d9acdef7c145c942c6b6337636d8b to your computer and use it in GitHub Desktop.
export async function fetchJSON(url, options = {}) {
let response = checkResponse(await fetch(url, options))
let data = await response.json()
return data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment