AbortSignal: abort() static method
  
  
   The AbortSignal.abort() static 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 organized such that the abort logic should be run even if the intended fetch operation has not been started).
   
   
  Syntax
  
   
    
    AbortSignal.abort()
AbortSignal.abort(reason)
    
   
  Parameters
  
   
    - 
     
reason
     
    - 
     
The reason why the operation was aborted, which can be any JavaScript value. If not specified, the reason is set to "AbortError" DOMException.
     
   
   
  Return value
  
   An AbortSignal instance with the AbortSignal.aborted property set to true, and AbortSignal.reason set to the specified or default reason value.
   
  Specifications
  
  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_static | 
       93 | 
       93 | 
       88 | 
       No | 
       79 | 
       15 | 
       93 | 
       93 | 
       88 | 
       66 | 
       15 | 
       17.0 | 
      
      
       reason_parameter | 
       98 | 
       98 | 
       97 | 
       No | 
       84 | 
       15.4 | 
       98 | 
       98 | 
       97 | 
       68 | 
       15.4 | 
       18.0 |