Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@babel /
traverse /
lib /
path /
Delete
Unzip
Name
Size
Permission
Date
Action
inference
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
lib
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
ancestry.js
3.57
KB
-rw-r--r--
2024-02-26 08:46
comments.js
1.08
KB
-rw-r--r--
2024-02-26 08:46
context.js
5.81
KB
-rw-r--r--
2024-02-26 08:46
conversion.js
16.44
KB
-rw-r--r--
2024-02-26 08:46
evaluation.js
9.62
KB
-rw-r--r--
2024-02-26 08:46
family.js
9.9
KB
-rw-r--r--
2024-02-26 08:46
index.js
5.34
KB
-rw-r--r--
2024-02-26 08:46
introspection.js
12.07
KB
-rw-r--r--
2024-02-26 08:46
modification.js
7.51
KB
-rw-r--r--
2024-02-26 08:46
removal.js
1.55
KB
-rw-r--r--
2024-02-26 08:46
replacement.js
6.98
KB
-rw-r--r--
2024-02-26 08:46
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addComment = addComment; exports.addComments = addComments; exports.shareCommentsWithSiblings = shareCommentsWithSiblings; var _t = require("@babel/types"); const { addComment: _addComment, addComments: _addComments } = _t; function shareCommentsWithSiblings() { if (typeof this.key === "string") return; const node = this.node; if (!node) return; const trailing = node.trailingComments; const leading = node.leadingComments; if (!trailing && !leading) return; const prev = this.getSibling(this.key - 1); const next = this.getSibling(this.key + 1); const hasPrev = Boolean(prev.node); const hasNext = Boolean(next.node); if (hasPrev && !hasNext) { prev.addComments("trailing", trailing); } else if (hasNext && !hasPrev) { next.addComments("leading", leading); } } function addComment(type, content, line) { _addComment(this.node, type, content, line); } function addComments(type, comments) { _addComments(this.node, type, comments); } //# sourceMappingURL=comments.js.map