UNPKG

@minilibs/ip2geo

Version:

Ip to Geo location instantly ⚡

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