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 Template = require("../Template"); const HelperRuntimeModule = require("./HelperRuntimeModule"); class DefinePropertyGettersRuntimeModule extends HelperRuntimeModule { constructor() { super("define property getters"); } /** * @returns {string} runtime code */ generate() { const { runtimeTemplate } = this.compilation; const fn = RuntimeGlobals.definePropertyGetters; return Template.asString([ "// define getter functions for harmony exports", `${fn} = ${runtimeTemplate.basicFunction("exports, definition", [ `for(var key in definition) {`, Template.indent([ `if(${RuntimeGlobals.hasOwnProperty}(definition, key) && !${RuntimeGlobals.hasOwnProperty}(exports, key)) {`, Template.indent([ "Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });" ]), "}" ]), "}" ])};` ]); } } module.exports = DefinePropertyGettersRuntimeModule;