UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

10 lines (7 loc) 216 B
import { DOMException } from '../_internal/DOMException.mjs'; class AbortError extends DOMException { constructor(message = 'The operation was aborted') { super(message); } } export { AbortError };