book_manage/apps/web/src/polyfills/index.ts

8 lines
229 B
TypeScript

if (!AbortSignal.prototype.throwIfAborted) {
AbortSignal.prototype.throwIfAborted = function () {
if (this.aborted) {
throw new DOMException("The operation was aborted.", "AbortError");
}
};
}