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.219.203.214
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-sources /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
helpers
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
CachedSource.js
7.29
KB
-rw-rw-r--
2022-08-30 11:49
CompatSource.js
1.36
KB
-rw-rw-r--
2022-08-30 11:49
ConcatSource.js
7.79
KB
-rw-rw-r--
2022-08-30 11:49
OriginalSource.js
3.84
KB
-rw-rw-r--
2022-08-30 11:49
PrefixSource.js
2.73
KB
-rw-rw-r--
2022-08-30 11:49
RawSource.js
2.06
KB
-rw-rw-r--
2022-08-30 11:49
ReplaceSource.js
12.3
KB
-rw-rw-r--
2022-08-30 11:49
SizeOnlySource.js
602
B
-rw-rw-r--
2022-08-30 11:49
Source.js
569
B
-rw-rw-r--
2022-08-30 11:49
SourceMapSource.js
6.33
KB
-rw-rw-r--
2022-08-30 11:49
index.js
956
B
-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 Source = require("./Source"); class CompatSource extends Source { static from(sourceLike) { return sourceLike instanceof Source ? sourceLike : new CompatSource(sourceLike); } constructor(sourceLike) { super(); this._sourceLike = sourceLike; } source() { return this._sourceLike.source(); } buffer() { if (typeof this._sourceLike.buffer === "function") { return this._sourceLike.buffer(); } return super.buffer(); } size() { if (typeof this._sourceLike.size === "function") { return this._sourceLike.size(); } return super.size(); } map(options) { if (typeof this._sourceLike.map === "function") { return this._sourceLike.map(options); } return super.map(options); } sourceAndMap(options) { if (typeof this._sourceLike.sourceAndMap === "function") { return this._sourceLike.sourceAndMap(options); } return super.sourceAndMap(options); } updateHash(hash) { if (typeof this._sourceLike.updateHash === "function") { return this._sourceLike.updateHash(hash); } if (typeof this._sourceLike.map === "function") { throw new Error( "A Source-like object with a 'map' method must also provide an 'updateHash' method" ); } hash.update(this.buffer()); } } module.exports = CompatSource;