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
Change afa323b fixed issue #135 so now this situation is no longer unhandled:
Promise.all([Promise.rejected("one")]).catch(...);
But if you do two or more, only the first one is handled:
Promise.all([Promise.rejected("one"), Promise.rejected("two")]).catch(...);
I'm not sure what the right behavior is, but maybe the first rejection should call the array's reject handler and then any other rejections are ignored?
The text was updated successfully, but these errors were encountered:
b645dbc
Merge pull request #3 from HBOCodeLabs/jordan/take2
d56afad
Updating to 1.1.0 + Issue petkaantonov#138 fix
No branches or pull requests
Change afa323b fixed issue #135 so now this situation is no longer unhandled:
But if you do two or more, only the first one is handled:
I'm not sure what the right behavior is, but maybe the first rejection should call the array's reject handler and then any other rejections are ignored?
The text was updated successfully, but these errors were encountered: