UNPKG

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