collect-system/apps/web/src/polyfills/index.ts

8 lines
229 B
TypeScript
Raw Normal View History

2024-09-03 20:29:51 +08:00
if (!AbortSignal.prototype.throwIfAborted) {
AbortSignal.prototype.throwIfAborted = function () {
if (this.aborted) {
throw new DOMException("The operation was aborted.", "AbortError");
}
};
}