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 /
wasm-async /
Delete
Unzip
Name
Size
Permission
Date
Action
AsyncWasmLoadingRuntimeModule.js
2.28
KB
-rw-rw-r--
2022-08-30 11:49
AsyncWebAssemblyGenerator.js
1.24
KB
-rw-rw-r--
2022-08-30 11:49
AsyncWebAssemblyJavascriptGenerator.js
5.65
KB
-rw-rw-r--
2022-08-30 11:49
AsyncWebAssemblyModulesPlugin.js
5.76
KB
-rw-rw-r--
2022-08-30 11:49
AsyncWebAssemblyParser.js
1.83
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 Generator = require("../Generator"); /** @typedef {import("webpack-sources").Source} Source */ /** @typedef {import("../Generator").GenerateContext} GenerateContext */ /** @typedef {import("../NormalModule")} NormalModule */ const TYPES = new Set(["webassembly"]); class AsyncWebAssemblyGenerator extends Generator { constructor(options) { super(); this.options = options; } /** * @param {NormalModule} module fresh module * @returns {Set<string>} available types (do not mutate) */ getTypes(module) { return TYPES; } /** * @param {NormalModule} module the module * @param {string=} type source type * @returns {number} estimate size of the module */ getSize(module, type) { const originalSource = module.originalSource(); if (!originalSource) { return 0; } return originalSource.size(); } /** * @param {NormalModule} module module for which the code should be generated * @param {GenerateContext} generateContext context for generate * @returns {Source} generated code */ generate(module, generateContext) { return module.originalSource(); } } module.exports = AsyncWebAssemblyGenerator;