AbortSignal.abort()
The static AbortSignal.abort()
method returns an AbortSignal
that is already set as aborted (and which does not trigger an abort event).
This is shorthand for the following code:
const controller = new AbortController(); controller.abort(); return controller.signal;
This could, for example, be passed to a fetch method in order to run its abort logic (i.e. it may be that code is organised such that the abort logic should be run even if the intended fetch operation has not been started).
Note: The method is similar in purpose to Promise.reject
Syntax
AbortSignal.abort();
Return value
An AbortSignal
instance with the AbortSignal.aborted
property set to true
.
.
Specifications
Specification |
---|
DOM Standard (DOM) # ref-for-dom-abortsignal-abort① |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
abort |
93 |
93 |
88 |
No |
79 |
15 |
93 |
93 |
88 |
No |
15 |
No |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort