Skip to content

Instantly share code, notes, and snippets.

@Lcfvs
Last active April 1, 2022 20:08
Show Gist options
  • Save Lcfvs/6e1deccac56efd9150020684610f8916 to your computer and use it in GitHub Desktop.
Save Lcfvs/6e1deccac56efd9150020684610f8916 to your computer and use it in GitHub Desktop.
export default async (
...promises
) => {
return (await Promise.race([
Promise.all(promises),
Promise.all([promises])
]))[0] !== promises
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment