2022-12-08 17:38:04 +01:00
|
|
|
diff --git a/browser.js b/browser.js
|
|
|
|
index b0c5ec37d9b76ca561a0a5391a07226ebc6a2b48..b61071bb3de94c61e98ffc49d9257c58c5f0c792 100644
|
|
|
|
--- a/browser.js
|
|
|
|
+++ b/browser.js
|
2021-09-29 08:56:08 +02:00
|
|
|
@@ -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 */
|
|
|
|
|
2022-07-18 16:43:30 +02:00
|
|
|
-module.exports = AbortController
|
2021-09-29 08:56:08 +02:00
|
|
|
-module.exports.AbortSignal = AbortSignal
|
|
|
|
-module.exports.default = AbortController
|
2022-07-18 16:43:30 +02:00
|
|
|
+module.exports = { AbortController }
|