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.

14 line
394B

  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