es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
14 lines (9 loc) • 328 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const DOMException = require('../_internal/DOMException.js');
class AbortError extends DOMException.DOMException {
constructor(message = 'The operation was aborted') {
super(message);
}
}
exports.AbortError = AbortError;