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.188.73.229
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 /
asset /
Delete
Unzip
Name
Size
Permission
Date
Action
AssetGenerator.js
13.39
KB
-rw-rw-r--
2022-08-30 11:49
AssetModulesPlugin.js
6.25
KB
-rw-rw-r--
2022-08-30 11:49
AssetParser.js
1.67
KB
-rw-rw-r--
2022-08-30 11:49
AssetSourceGenerator.js
1.75
KB
-rw-rw-r--
2022-08-30 11:49
AssetSourceParser.js
821
B
-rw-rw-r--
2022-08-30 11:49
RawDataUrlModule.js
4.3
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Sergey Melyukov @smelukov */ "use strict"; const { RawSource } = require("webpack-sources"); const Generator = require("../Generator"); const RuntimeGlobals = require("../RuntimeGlobals"); /** @typedef {import("webpack-sources").Source} Source */ /** @typedef {import("../Generator").GenerateContext} GenerateContext */ /** @typedef {import("../NormalModule")} NormalModule */ const TYPES = new Set(["javascript"]); class AssetSourceGenerator extends Generator { /** * @param {NormalModule} module module for which the code should be generated * @param {GenerateContext} generateContext context for generate * @returns {Source} generated code */ generate(module, { chunkGraph, runtimeTemplate, runtimeRequirements }) { runtimeRequirements.add(RuntimeGlobals.module); const originalSource = module.originalSource(); if (!originalSource) { return new RawSource(""); } const content = originalSource.source(); let encodedSource; if (typeof content === "string") { encodedSource = content; } else { encodedSource = content.toString("utf-8"); } return new RawSource( `${RuntimeGlobals.module}.exports = ${JSON.stringify(encodedSource)};` ); } /** * @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; } // Example: m.exports="abcd" return originalSource.size() + 12; } } module.exports = AssetSourceGenerator;