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 RuntimeModule = require("../RuntimeModule"); const Template = require("../Template"); /** @typedef {import("../RuntimeTemplate")} RuntimeTemplate */ class ChunkPrefetchFunctionRuntimeModule extends RuntimeModule { /** * @param {string} childType TODO * @param {string} runtimeFunction TODO * @param {string} runtimeHandlers TODO */ constructor(childType, runtimeFunction, runtimeHandlers) { super(`chunk ${childType} function`); this.childType = childType; this.runtimeFunction = runtimeFunction; this.runtimeHandlers = runtimeHandlers; } /** * @returns {string} runtime code */ generate() { const { runtimeFunction, runtimeHandlers } = this; const { runtimeTemplate } = this.compilation; return Template.asString([ `${runtimeHandlers} = {};`, `${runtimeFunction} = ${runtimeTemplate.basicFunction("chunkId", [ // map is shorter than forEach `Object.keys(${runtimeHandlers}).map(${runtimeTemplate.basicFunction( "key", `${runtimeHandlers}[key](chunkId);` )});` ])}` ]); } } module.exports = ChunkPrefetchFunctionRuntimeModule;