browser.js 394 B

12345678910111213
  1. /*globals self, window */
  2. "use strict"
  3. /*eslint-disable @mysticatea/prettier */
  4. const { AbortController, AbortSignal } =
  5. typeof self !== "undefined" ? self :
  6. typeof window !== "undefined" ? window :
  7. /* otherwise */ undefined
  8. /*eslint-enable @mysticatea/prettier */
  9. module.exports = AbortController
  10. module.exports.AbortSignal = AbortSignal
  11. module.exports.default = AbortController