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
Chrome (and ng2 polyfills) log an error to the console if a promise is rejected, but there was no .catch() attached.
This is causing problems in ng2 because the reject factory is doing this: new Promise((resolve, reject) => reject(foo) instead of Promise.reject(foo).
new Promise((resolve, reject) => reject(foo)
Promise.reject(foo)
The text was updated successfully, but these errors were encountered:
dupe #2676
Sorry, something went wrong.
fix(coreservices): Use Promise.reject()/resolve()/all()
62b2ebc
closes #2683
No branches or pull requests
Chrome (and ng2 polyfills) log an error to the console if a promise is rejected, but there was no .catch() attached.
This is causing problems in ng2 because the reject factory is doing this:
new Promise((resolve, reject) => reject(foo)
instead ofPromise.reject(foo)
.The text was updated successfully, but these errors were encountered: