Delete node_modules directory

This commit is contained in:
2021-04-11 11:54:19 +02:00
committed by GitHub
parent 3017d193fd
commit 94857d1cb1
332 changed files with 0 additions and 60040 deletions

View File

@@ -1,21 +0,0 @@
/*globals require, self, window */
"use strict"
const ac = require("./dist/abort-controller")
/*eslint-disable @mysticatea/prettier */
const g =
typeof self !== "undefined" ? self :
typeof window !== "undefined" ? window :
typeof global !== "undefined" ? global :
/* otherwise */ undefined
/*eslint-enable @mysticatea/prettier */
if (g) {
if (typeof g.AbortController === "undefined") {
g.AbortController = ac.AbortController
}
if (typeof g.AbortSignal === "undefined") {
g.AbortSignal = ac.AbortSignal
}
}