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.141.164.253
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 /
prefetch /
Delete
Unzip
Name
Size
Permission
Date
Action
ChunkPrefetchFunctionRuntimeModule.js
1.16
KB
-rw-rw-r--
2022-08-30 11:49
ChunkPrefetchPreloadPlugin.js
2.87
KB
-rw-rw-r--
2022-08-30 11:49
ChunkPrefetchStartupRuntimeModule.js
1.47
KB
-rw-rw-r--
2022-08-30 11:49
ChunkPrefetchTriggerRuntimeModule.js
1.25
KB
-rw-rw-r--
2022-08-30 11:49
ChunkPreloadTriggerRuntimeModule.js
1.14
KB
-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 RuntimeModule = require("../RuntimeModule"); const Template = require("../Template"); /** @typedef {import("../RuntimeTemplate")} RuntimeTemplate */ class ChunkPrefetchTriggerRuntimeModule extends RuntimeModule { /** * @param {Record<string|number, (string|number)[]>} chunkMap map from chunk to */ constructor(chunkMap) { super(`chunk prefetch trigger`, RuntimeModule.STAGE_TRIGGER); this.chunkMap = chunkMap; } /** * @returns {string} runtime code */ generate() { const { chunkMap } = this; const { runtimeTemplate } = this.compilation; const body = [ "var chunks = chunkToChildrenMap[chunkId];", `Array.isArray(chunks) && chunks.map(${RuntimeGlobals.prefetchChunk});` ]; return Template.asString([ Template.asString([ `var chunkToChildrenMap = ${JSON.stringify(chunkMap, null, "\t")};`, `${ RuntimeGlobals.ensureChunkHandlers }.prefetch = ${runtimeTemplate.expressionFunction( `Promise.all(promises).then(${runtimeTemplate.basicFunction( "", body )})`, "chunkId, promises" )};` ]) ]); } } module.exports = ChunkPrefetchTriggerRuntimeModule;