Skip to content

Instantly share code, notes, and snippets.

@filipemacedo
Last active July 8, 2021 01:59
Show Gist options
  • Save filipemacedo/fbc4891bdf5d3938cd7667a73446ea84 to your computer and use it in GitHub Desktop.
Save filipemacedo/fbc4891bdf5d3938cd7667a73446ea84 to your computer and use it in GitHub Desktop.
async function request(url) {
try {
const response = await axios.get(url)
console.log(response);
} catch(error) {
if (!!error.response) {
console.log(error.response)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment