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._assertUnremoved = _assertUnremoved; exports._callRemovalHooks = _callRemovalHooks; exports._markRemoved = _markRemoved; exports._remove = _remove; exports._removeFromScope = _removeFromScope; exports.remove = remove; var _removalHooks = require("./lib/removal-hooks"); var _cache = require("../cache"); var _index = require("./index"); function remove() { var _this$opts; this._assertUnremoved(); this.resync(); if (!((_this$opts = this.opts) != null && _this$opts.noScope)) { this._removeFromScope(); } if (this._callRemovalHooks()) { this._markRemoved(); return; } this.shareCommentsWithSiblings(); this._remove(); this._markRemoved(); } function _removeFromScope() { const bindings = this.getBindingIdentifiers(); Object.keys(bindings).forEach(name => this.scope.removeBinding(name)); } function _callRemovalHooks() { for (const fn of _removalHooks.hooks) { if (fn(this, this.parentPath)) return true; } } function _remove() { if (Array.isArray(this.container)) { this.container.splice(this.key, 1); this.updateSiblingKeys(this.key, -1); } else { this._replaceWith(null); } } function _markRemoved() { this._traverseFlags |= _index.SHOULD_SKIP | _index.REMOVED; if (this.parent) _cache.path.get(this.parent).delete(this.node); this.node = null; } function _assertUnremoved() { if (this.removed) { throw this.buildCodeFrameError("NodePath has been removed so is read-only."); } } //# sourceMappingURL=removal.js.map