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 /
cache /
Delete
Unzip
Name
Size
Permission
Date
Action
AddBuildDependenciesPlugin.js
716
B
-rw-rw-r--
2022-08-30 11:49
AddManagedPathsPlugin.js
870
B
-rw-rw-r--
2022-08-30 11:49
IdleFileCachePlugin.js
6.67
KB
-rw-rw-r--
2022-08-30 11:49
MemoryCachePlugin.js
1.48
KB
-rw-rw-r--
2022-08-30 11:49
MemoryWithGcCachePlugin.js
3.77
KB
-rw-rw-r--
2022-08-30 11:49
PackFileCacheStrategy.js
39.65
KB
-rw-rw-r--
2022-08-30 11:49
ResolverCachePlugin.js
10.34
KB
-rw-rw-r--
2022-08-30 11:49
getLazyHashedEtag.js
2.13
KB
-rw-rw-r--
2022-08-30 11:49
mergeEtags.js
1.45
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"; /** @typedef {import("../Compiler")} Compiler */ class AddManagedPathsPlugin { /** * @param {Iterable<string | RegExp>} managedPaths list of managed paths * @param {Iterable<string | RegExp>} immutablePaths list of immutable paths */ constructor(managedPaths, immutablePaths) { this.managedPaths = new Set(managedPaths); this.immutablePaths = new Set(immutablePaths); } /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { for (const managedPath of this.managedPaths) { compiler.managedPaths.add(managedPath); } for (const immutablePath of this.immutablePaths) { compiler.immutablePaths.add(immutablePath); } } } module.exports = AddManagedPathsPlugin;