Spaces:
Sleeping
Sleeping
File size: 394 Bytes
51ddcbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/*globals self, window */
"use strict"
/*eslint-disable @mysticatea/prettier */
const { AbortController, AbortSignal } =
typeof self !== "undefined" ? self :
typeof window !== "undefined" ? window :
/* otherwise */ undefined
/*eslint-enable @mysticatea/prettier */
module.exports = AbortController
module.exports.AbortSignal = AbortSignal
module.exports.default = AbortController
|