Add files

This commit is contained in:
DoomRye 2022-07-26 10:06:20 -07:00
commit bb80829159
18195 changed files with 2122994 additions and 0 deletions

View file

@ -0,0 +1,11 @@
module.exports = function() {
throw new Error("define cannot be used indirect");
};
//////////////////
// WEBPACK FOOTER
// (webpack)/buildin/amd-define.js
// module id = 5566
// module chunks = 4

View file

@ -0,0 +1,10 @@
/* globals __webpack_amd_options__ */
module.exports = __webpack_amd_options__;
//////////////////
// WEBPACK FOOTER
// (webpack)/buildin/amd-options.js
// module id = 1185
// module chunks = 4

View file

@ -0,0 +1,29 @@
var g;
// This works in non-strict mode
g = (function() {
return this;
})();
try {
// This works if eval is allowed (see CSP)
g = g || Function("return this")() || (1,eval)("this");
} catch(e) {
// This works if the window reference is available
if(typeof window === "object")
g = window;
}
// g can still be undefined, but nothing to do about it...
// We return undefined, instead of nothing here, so it's
// easier to handle this case. if(!global) { ...}
module.exports = g;
//////////////////
// WEBPACK FOOTER
// (webpack)/buildin/global.js
// module id = 30
// module chunks = 4

View file

@ -0,0 +1,30 @@
module.exports = function(module) {
if(!module.webpackPolyfill) {
module.deprecate = function() {};
module.paths = [];
// module.parent = undefined by default
if(!module.children) module.children = [];
Object.defineProperty(module, "loaded", {
enumerable: true,
get: function() {
return module.l;
}
});
Object.defineProperty(module, "id", {
enumerable: true,
get: function() {
return module.i;
}
});
module.webpackPolyfill = 1;
}
return module;
};
//////////////////
// WEBPACK FOOTER
// (webpack)/buildin/module.js
// module id = 251
// module chunks = 4