UNPKG

node-fetch

Version:

A light-weight module that brings Fetch API to node.js

11 lines (9 loc) 218 B
import {FetchBaseError} from './base.js'; /** * AbortError interface for cancelled requests */ export class AbortError extends FetchBaseError { constructor(message, type = 'aborted') { super(message, type); } }