You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
659 B
19 lines
659 B
3 years ago
|
diff --git a/node_modules/abort-controller/browser.js b/node_modules/abort-controller/browser.js
|
||
|
index b0c5ec3..c8c8018 100644
|
||
|
--- a/node_modules/abort-controller/browser.js
|
||
|
+++ b/node_modules/abort-controller/browser.js
|
||
|
@@ -2,12 +2,7 @@
|
||
|
"use strict"
|
||
|
|
||
|
/*eslint-disable @mysticatea/prettier */
|
||
|
-const { AbortController, AbortSignal } =
|
||
|
- typeof self !== "undefined" ? self :
|
||
|
- typeof window !== "undefined" ? window :
|
||
|
- /* otherwise */ undefined
|
||
|
+const { AbortController } = globalThis;
|
||
|
/*eslint-enable @mysticatea/prettier */
|
||
|
|
||
|
module.exports = AbortController
|
||
|
-module.exports.AbortSignal = AbortSignal
|
||
|
-module.exports.default = AbortController
|