Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
memfs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
internal
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
Dirent.d.ts
535
B
-rw-r--r--
2022-04-21 14:29
Dirent.js
1.83
KB
-rw-r--r--
2022-04-21 14:29
Stats.d.ts
900
B
-rw-r--r--
2022-04-21 14:29
Stats.js
2.83
KB
-rw-r--r--
2022-04-21 14:29
constants.d.ts
1.3
KB
-rw-r--r--
2022-04-21 14:29
constants.js
1.02
KB
-rw-r--r--
2022-04-21 14:29
encoding.d.ts
366
B
-rw-r--r--
2022-04-21 14:29
encoding.js
831
B
-rw-r--r--
2022-04-21 14:29
getBigInt.js
191
B
-rw-r--r--
2022-04-21 14:29
index.d.ts
854
B
-rw-r--r--
2022-04-21 14:29
index.js
2.11
KB
-rw-r--r--
2022-04-21 14:29
node.d.ts
4
KB
-rw-r--r--
2022-04-21 14:29
node.js
13.85
KB
-rw-r--r--
2022-04-21 14:29
process.d.ts
372
B
-rw-r--r--
2022-04-21 14:29
process.js
1.31
KB
-rw-r--r--
2022-04-21 14:29
promises.d.ts
4.21
KB
-rw-r--r--
2022-04-21 14:29
promises.js
6.27
KB
-rw-r--r--
2022-04-21 14:29
setImmediate.d.ts
151
B
-rw-r--r--
2022-04-21 14:29
setImmediate.js
364
B
-rw-r--r--
2022-04-21 14:29
setTimeoutUnref.d.ts
339
B
-rw-r--r--
2022-04-21 14:29
setTimeoutUnref.js
493
B
-rw-r--r--
2022-04-21 14:29
volume-localstorage.d.ts
471
B
-rw-r--r--
2022-04-21 14:29
volume-localstorage.js
4.27
KB
-rw-r--r--
2022-04-21 14:29
volume.d.ts
17.55
KB
-rw-r--r--
2022-04-21 14:29
volume.js
84.93
KB
-rw-r--r--
2022-04-21 14:29
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Dirent = void 0; var constants_1 = require("./constants"); var encoding_1 = require("./encoding"); var S_IFMT = constants_1.constants.S_IFMT, S_IFDIR = constants_1.constants.S_IFDIR, S_IFREG = constants_1.constants.S_IFREG, S_IFBLK = constants_1.constants.S_IFBLK, S_IFCHR = constants_1.constants.S_IFCHR, S_IFLNK = constants_1.constants.S_IFLNK, S_IFIFO = constants_1.constants.S_IFIFO, S_IFSOCK = constants_1.constants.S_IFSOCK; /** * A directory entry, like `fs.Dirent`. */ var Dirent = /** @class */ (function () { function Dirent() { this.name = ''; this.mode = 0; } Dirent.build = function (link, encoding) { var dirent = new Dirent(); var mode = link.getNode().mode; dirent.name = (0, encoding_1.strToEncoding)(link.getName(), encoding); dirent.mode = mode; return dirent; }; Dirent.prototype._checkModeProperty = function (property) { return (this.mode & S_IFMT) === property; }; Dirent.prototype.isDirectory = function () { return this._checkModeProperty(S_IFDIR); }; Dirent.prototype.isFile = function () { return this._checkModeProperty(S_IFREG); }; Dirent.prototype.isBlockDevice = function () { return this._checkModeProperty(S_IFBLK); }; Dirent.prototype.isCharacterDevice = function () { return this._checkModeProperty(S_IFCHR); }; Dirent.prototype.isSymbolicLink = function () { return this._checkModeProperty(S_IFLNK); }; Dirent.prototype.isFIFO = function () { return this._checkModeProperty(S_IFIFO); }; Dirent.prototype.isSocket = function () { return this._checkModeProperty(S_IFSOCK); }; return Dirent; }()); exports.Dirent = Dirent; exports.default = Dirent;