We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in node < 10, or 10.2+, the following code in the REPL shows a rejected promise. in node 10.0 and 10.1, however, the promise is forever pending.
var r, p = new Promise(y => { r = y; }); r({ then() { throw 42; } }); p;
The text was updated successfully, but these errors were encountered:
v8/v8@40060be is the bug fix; there may not be any way to synchronously detect it.
Sorry, something went wrong.
No branches or pull requests
in node < 10, or 10.2+, the following code in the REPL shows a rejected promise. in node 10.0 and 10.1, however, the promise is forever pending.
The text was updated successfully, but these errors were encountered: