File "abort-error.js"
Full Path: C:/wamp64/www/INTERPRETE2/backend/node_modules/node-fetch/src/errors/abort-error.js
File size: 218 bytes
MIME-type: text/x-java
Charset: utf-8
import {FetchBaseError} from './base.js';
/**
* AbortError interface for cancelled requests
*/
export class AbortError extends FetchBaseError {
constructor(message, type = 'aborted') {
super(message, type);
}
}