fix: use node fetch
This commit is contained in:
10
node_modules/node-fetch/src/errors/abort-error.js
generated
vendored
Normal file
10
node_modules/node-fetch/src/errors/abort-error.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import {FetchBaseError} from './base.js';
|
||||
|
||||
/**
|
||||
* AbortError interface for cancelled requests
|
||||
*/
|
||||
export class AbortError extends FetchBaseError {
|
||||
constructor(message, type = 'aborted') {
|
||||
super(message, type);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user