Skip to content

Instantly share code, notes, and snippets.

@schahriar
Created January 15, 2018 09:00
Show Gist options
  • Save schahriar/3aa50549161a424caa20226337df263e to your computer and use it in GitHub Desktop.
Save schahriar/3aa50549161a424caa20226337df263e to your computer and use it in GitHub Desktop.
In-flight promises awaiting a race #async-await #medium
while(inFlight.size >= limit) {
await Promise.race(inFlight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment