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
Ref the discussion in #418 (comment) we should implement a fake AbortSignal.timeout() in environments where it exists. This should return a Signal interface that will list the status and it should be possible to listen to events on that signal to know when it has finished:
// Watch for 'abort' signalssignal.addEventListener("abort",()=>{// Stop the main operation// Reject the promise with the abort reason.reject(signal.reason);});
Ref the discussion in #418 (comment) we should implement a fake
AbortSignal.timeout()
in environments where it exists. This should return aSignal
interface that will list the status and it should be possible to listen to events on that signal to know when it has finished:Docs: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
The text was updated successfully, but these errors were encountered: