Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 lines
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