You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most V8 Promise bugs (like 1 or 2) will be fixed in V8 ~ Chrome 49. Still not fixed V8 bugs are fixed in core-js by patching methods. It means custom unhandled rejection handlers will not work in Chrome 49 with core-js. The same situation with FF46. Some days ago promise rejection events was added to ECMAScript and HTML drafts.
So the question for the community: replace native Promise without support promise rejection events (in this case, in addition to global handlers, add generation custom events in browsers) or not?
Upd.: Ok. Chrome 49 supports unhandled rejection events.
Upd.: Because some other bugs, native Promise should be available only in V8 ~ Chrome 51.
The text was updated successfully, but these errors were encountered:
Most V8
Promise
bugs (like 1 or 2) will be fixed in V8 ~ Chrome 49. Still not fixed V8 bugs are fixed incore-js
by patching methods. It means custom unhandled rejection handlers will not work in Chrome 49 withcore-js
. The same situation with FF46. Some days ago promise rejection events was added to ECMAScript and HTML drafts.So the question for the community: replace native
Promise
without support promise rejection events (in this case, in addition to global handlers, add generation custom events in browsers) or not?Upd.: Ok. Chrome 49 supports unhandled rejection events.
Upd.: Because some other bugs, native
Promise
should be available only in V8 ~ Chrome 51.The text was updated successfully, but these errors were encountered: