We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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)