Skip to content

Instantly share code, notes, and snippets.

@loopdream
Last active March 22, 2018 17:59
Show Gist options
  • Save loopdream/4a94bed1c7a63982419b6806c32e3870 to your computer and use it in GitHub Desktop.
Save loopdream/4a94bed1c7a63982419b6806c32e3870 to your computer and use it in GitHub Desktop.
Destructured promise All with fetch
async function getTheThings(urls) {
return await Promise.all(urls.map(url => fetch(url)));
}
// usage
const [post, comments] = getTheThings(['/post', '/comments']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment