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
{{ message }}
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
While any-promise is a nice solution, I think we could simplify maintaining Promises for dependencies further by using native promises. Node has supported Promise since 0.12, and IE is the only modern browser that is missing Promise support(which can be polyfilled with babel-promise or replaced with webpack externals). While this is a little more work for IE support I like that it makes the Promise implementation selection more predictable.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
While
any-promise
is a nice solution, I think we could simplify maintaining Promises for dependencies further by using native promises. Node has supported Promise since0.12
, and IE is the only modern browser that is missing Promise support(which can be polyfilled withbabel-promise
or replaced with webpack externals). While this is a little more work for IE support I like that it makes the Promise implementation selection more predictable.The text was updated successfully, but these errors were encountered: