21 lines
		
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export class AbortSignal {
 | 
						|
    onabort = null;
 | 
						|
    _aborted = false;
 | 
						|
    constructor() {
 | 
						|
        Object.defineProperty(this, "_aborted", {
 | 
						|
            value: false,
 | 
						|
            writable: true,
 | 
						|
        });
 | 
						|
    }
 | 
						|
    get aborted() {
 | 
						|
        return this._aborted;
 | 
						|
    }
 | 
						|
    abort() {
 | 
						|
        this._aborted = true;
 | 
						|
        if (this.onabort) {
 | 
						|
            this.onabort(this);
 | 
						|
            this.onabort = null;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |