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
Currently the Resolver tests that a @resolve Promise is instanceof Promise. Promises seem to be a bit fickle in that there are many different implementations and ways to get a global Promise object.
The question is should we expect one global Promise object or provide a duckpunch to interop with the different methods?
Alternatively, we could ignore Promises and use a callback which the consumer is responsible for calling in whatever async control flow implementation they should choose.
The text was updated successfully, but these errors were encountered:
Currently the Resolver tests that a
@resolve
Promise isinstanceof Promise
. Promises seem to be a bit fickle in that there are many different implementations and ways to get a global Promise object.A few possibilities:
The question is should we expect one global Promise object or provide a duckpunch to interop with the different methods?
Alternatively, we could ignore Promises and use a callback which the consumer is responsible for calling in whatever async control flow implementation they should choose.
The text was updated successfully, but these errors were encountered: