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
If you pass a non promise to promises.chain(), .onThen(), onCatch, onFinally(), it should convert any non-promises to promises rather than forcing the outside to promisify them. The developer's intent is to take that value and wait for it and run something in the callback, so it being a non-promise doesn't really matter.
This isn't a breaking change because previously it would throw an exception
The text was updated successfully, but these errors were encountered:
If you pass a non promise to
promises.chain()
,.onThen()
,onCatch
,onFinally()
, it should convert any non-promises to promises rather than forcing the outside to promisify them. The developer's intent is to take that value and wait for it and run something in the callback, so it being a non-promise doesn't really matter.This isn't a breaking change because previously it would throw an exception
The text was updated successfully, but these errors were encountered: