選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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