Skip to content

Instantly share code, notes, and snippets.

@andersr
Last active October 13, 2016 19:46
Show Gist options
  • Save andersr/6c5351f8796a79004aa07a982e27670a to your computer and use it in GitHub Desktop.
Save andersr/6c5351f8796a79004aa07a982e27670a to your computer and use it in GitHub Desktop.
const fetchJSON = url =>
fetch(url, { method: 'GET' })
.then(response => response.json())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment