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
Enabled resolving a promise using another promise which will make the resolved promise wait for the provided promise to be resolved and then use its result.
Capture unresolved promises using a SrdRef linked list so that its callbacks are triggered even if the user use then without capturing the resulting SrdRef.
Bug fix for the case of calling Promise.all with promises that are all already resolved, in which cases the created container promise does not get resolved, which is incorrect. The new behavior is that the created promise is created in a resolved state if all supplied promises are already resolved.