Skip to content

Instantly share code, notes, and snippets.

@wadez
Created June 13, 2021 17:36
Show Gist options
  • Save wadez/87208d64b732a949e253236bef1ca206 to your computer and use it in GitHub Desktop.
Save wadez/87208d64b732a949e253236bef1ca206 to your computer and use it in GitHub Desktop.
while (...) {
promises.push(new Promise((...) => {
...
const halt = (reason) => {
fatalPromises.push(new Promise((...) => {
Promise.allSettled(workers.map(w => w.terminate()))
.then(() => {
resolve2(reason)
})
}))
reject()
}
...
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment