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
Would support for AbortController be considered? (in the addEventListener, on, and once functions)
Supported in all browsers and node, you can pass a signal option parameter to the native addEventListener function.
The listener will be removed when the given AbortSignal object's abort() method is called. If not specified, no AbortSignal is associated with the listener.
Would support for AbortController be considered? (in the
addEventListener
,on
, andonce
functions)Supported in all browsers and node, you can pass a
signal
option parameter to the nativeaddEventListener
function.Links:
https://developer.mozilla.org/en-US/docs/Web/API/AbortController
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#signal
The text was updated successfully, but these errors were encountered: