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 /
ids /
Delete
Unzip
Name
Size
Permission
Date
Action
ChunkModuleIdRangePlugin.js
2.14
KB
-rw-rw-r--
2022-08-30 11:49
DeterministicChunkIdsPlugin.js
1.65
KB
-rw-rw-r--
2022-08-30 11:49
DeterministicModuleIdsPlugin.js
2.96
KB
-rw-rw-r--
2022-08-30 11:49
HashedModuleIdsPlugin.js
2.19
KB
-rw-rw-r--
2022-08-30 11:49
IdHelpers.js
12.57
KB
-rw-rw-r--
2022-08-30 11:49
NamedChunkIdsPlugin.js
1.89
KB
-rw-rw-r--
2022-08-30 11:49
NamedModuleIdsPlugin.js
1.51
KB
-rw-rw-r--
2022-08-30 11:49
NaturalChunkIdsPlugin.js
984
B
-rw-rw-r--
2022-08-30 11:49
NaturalModuleIdsPlugin.js
1.01
KB
-rw-rw-r--
2022-08-30 11:49
OccurrenceChunkIdsPlugin.js
2.47
KB
-rw-rw-r--
2022-08-30 11:49
OccurrenceModuleIdsPlugin.js
4.52
KB
-rw-rw-r--
2022-08-30 11:49
SyncModuleIdsPlugin.js
3.97
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Florent Cailhol @ooflorent */ "use strict"; const { compareChunksNatural } = require("../util/comparators"); const { getFullChunkName, getUsedChunkIds, assignDeterministicIds } = require("./IdHelpers"); /** @typedef {import("../Compiler")} Compiler */ /** @typedef {import("../Module")} Module */ class DeterministicChunkIdsPlugin { constructor(options) { this.options = options || {}; } /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.compilation.tap( "DeterministicChunkIdsPlugin", compilation => { compilation.hooks.chunkIds.tap( "DeterministicChunkIdsPlugin", chunks => { const chunkGraph = compilation.chunkGraph; const context = this.options.context ? this.options.context : compiler.context; const maxLength = this.options.maxLength || 3; const compareNatural = compareChunksNatural(chunkGraph); const usedIds = getUsedChunkIds(compilation); assignDeterministicIds( Array.from(chunks).filter(chunk => { return chunk.id === null; }), chunk => getFullChunkName(chunk, chunkGraph, context, compiler.root), compareNatural, (chunk, id) => { const size = usedIds.size; usedIds.add(`${id}`); if (size === usedIds.size) return false; chunk.id = id; chunk.ids = [id]; return true; }, [Math.pow(10, maxLength)], 10, usedIds.size ); } ); } ); } } module.exports = DeterministicChunkIdsPlugin;