Skip to content

Instantly share code, notes, and snippets.

@Gaafar
Last active June 24, 2023 03:46
Show Gist options
  • Save Gaafar/e33b6f757793d439070b541437e69bd6 to your computer and use it in GitHub Desktop.
Save Gaafar/e33b6f757793d439070b541437e69bd6 to your computer and use it in GitHub Desktop.
const makeRequest = async () => {
const data = await getJSON()
if (data.needsAnotherRequest) {
const moreData = await makeAnotherRequest(data)
console.log(moreData)
return moreData
} else {
console.log(data)
return data
}
}
@tjcchen
Copy link

tjcchen commented Dec 17, 2020

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment