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 : 3.135.201.190
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 /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
AsyncModuleRuntimeModule.js
4.53
KB
-rw-rw-r--
2022-08-30 11:49
AutoPublicPathRuntimeModule.js
2.33
KB
-rw-rw-r--
2022-08-30 11:49
ChunkNameRuntimeModule.js
566
B
-rw-rw-r--
2022-08-30 11:49
CompatGetDefaultExportRuntimeModule.js
1.04
KB
-rw-rw-r--
2022-08-30 11:49
CompatRuntimeModule.js
1.81
KB
-rw-rw-r--
2022-08-30 11:49
CreateFakeNamespaceObjectRuntimeModule.js
2.27
KB
-rw-rw-r--
2022-08-30 11:49
CreateScriptRuntimeModule.js
852
B
-rw-rw-r--
2022-08-30 11:49
CreateScriptUrlRuntimeModule.js
859
B
-rw-rw-r--
2022-08-30 11:49
DefinePropertyGettersRuntimeModule.js
1.05
KB
-rw-rw-r--
2022-08-30 11:49
EnsureChunkRuntimeModule.js
1.7
KB
-rw-rw-r--
2022-08-30 11:49
GetChunkFilenameRuntimeModule.js
8.26
KB
-rw-rw-r--
2022-08-30 11:49
GetFullHashRuntimeModule.js
664
B
-rw-rw-r--
2022-08-30 11:49
GetMainFilenameRuntimeModule.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
GetTrustedTypesPolicyRuntimeModule.js
1.92
KB
-rw-rw-r--
2022-08-30 11:49
GlobalRuntimeModule.js
1.13
KB
-rw-rw-r--
2022-08-30 11:49
HasOwnPropertyRuntimeModule.js
731
B
-rw-rw-r--
2022-08-30 11:49
HelperRuntimeModule.js
319
B
-rw-rw-r--
2022-08-30 11:49
LoadScriptRuntimeModule.js
4.59
KB
-rw-rw-r--
2022-08-30 11:49
MakeNamespaceObjectRuntimeModule.js
972
B
-rw-rw-r--
2022-08-30 11:49
OnChunksLoadedRuntimeModule.js
1.98
KB
-rw-rw-r--
2022-08-30 11:49
PublicPathRuntimeModule.js
663
B
-rw-rw-r--
2022-08-30 11:49
RelativeUrlRuntimeModule.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
RuntimeIdRuntimeModule.js
685
B
-rw-rw-r--
2022-08-30 11:49
StartupChunkDependenciesPlugin.js
2.22
KB
-rw-rw-r--
2022-08-30 11:49
StartupChunkDependenciesRuntimeModule.js
1.8
KB
-rw-rw-r--
2022-08-30 11:49
StartupEntrypointRuntimeModule.js
1.38
KB
-rw-rw-r--
2022-08-30 11:49
SystemContextRuntimeModule.js
532
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const StartupChunkDependenciesRuntimeModule = require("./StartupChunkDependenciesRuntimeModule"); const StartupEntrypointRuntimeModule = require("./StartupEntrypointRuntimeModule"); /** @typedef {import("../Compiler")} Compiler */ class StartupChunkDependenciesPlugin { constructor(options) { this.chunkLoading = options.chunkLoading; this.asyncChunkLoading = typeof options.asyncChunkLoading === "boolean" ? options.asyncChunkLoading : true; } /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.thisCompilation.tap( "StartupChunkDependenciesPlugin", compilation => { const globalChunkLoading = compilation.outputOptions.chunkLoading; const isEnabledForChunk = chunk => { const options = chunk.getEntryOptions(); const chunkLoading = options && options.chunkLoading !== undefined ? options.chunkLoading : globalChunkLoading; return chunkLoading === this.chunkLoading; }; compilation.hooks.additionalTreeRuntimeRequirements.tap( "StartupChunkDependenciesPlugin", (chunk, set, { chunkGraph }) => { if (!isEnabledForChunk(chunk)) return; if (chunkGraph.hasChunkEntryDependentChunks(chunk)) { set.add(RuntimeGlobals.startup); set.add(RuntimeGlobals.ensureChunk); set.add(RuntimeGlobals.ensureChunkIncludeEntries); compilation.addRuntimeModule( chunk, new StartupChunkDependenciesRuntimeModule( this.asyncChunkLoading ) ); } } ); compilation.hooks.runtimeRequirementInTree .for(RuntimeGlobals.startupEntrypoint) .tap("StartupChunkDependenciesPlugin", (chunk, set) => { if (!isEnabledForChunk(chunk)) return; set.add(RuntimeGlobals.require); set.add(RuntimeGlobals.ensureChunk); set.add(RuntimeGlobals.ensureChunkIncludeEntries); compilation.addRuntimeModule( chunk, new StartupEntrypointRuntimeModule(this.asyncChunkLoading) ); }); } ); } } module.exports = StartupChunkDependenciesPlugin;