Skip to content

Instantly share code, notes, and snippets.

@EvgenyArtemov
Created March 7, 2025 18:11
Show Gist options
  • Save EvgenyArtemov/14bafd7256e556b4e89ad41b40161744 to your computer and use it in GitHub Desktop.
Save EvgenyArtemov/14bafd7256e556b4e89ad41b40161744 to your computer and use it in GitHub Desktop.
const race = (promises) => new Promise((resolve, reject) => {
promises.forEach(promise => promise.then(resolve, reject));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment