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 : 216.73.216.234
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 /
@webassemblyjs /
ast /
esm /
Delete
Unzip
Name
Size
Permission
Date
Action
transform
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
types
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
clone.js
63
B
-rw-rw-r--
2022-08-30 11:49
definitions.js
10.74
KB
-rw-rw-r--
2022-08-30 11:49
index.js
405
B
-rw-rw-r--
2022-08-30 11:49
node-helpers.js
2.3
KB
-rw-rw-r--
2022-08-30 11:49
node-path.js
3.5
KB
-rw-rw-r--
2022-08-30 11:49
nodes.js
32.82
KB
-rw-rw-r--
2022-08-30 11:49
signatures.js
6.72
KB
-rw-rw-r--
2022-08-30 11:49
traverse.js
2.35
KB
-rw-rw-r--
2022-08-30 11:49
utils.js
7.52
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { createPath } from "./node-path"; import { unionTypesMap, nodeAndUnionTypes } from "./nodes"; // recursively walks the AST starting at the given node. The callback is invoked for // and object that has a 'type' property. function walk(context, callback) { var stop = false; function innerWalk(context, callback) { if (stop) { return; } var node = context.node; if (node === undefined) { console.warn("traversing with an empty context"); return; } if (node._deleted === true) { return; } var path = createPath(context); callback(node.type, path); if (path.shouldStop) { stop = true; return; } Object.keys(node).forEach(function (prop) { var value = node[prop]; if (value === null || value === undefined) { return; } var valueAsArray = Array.isArray(value) ? value : [value]; valueAsArray.forEach(function (childNode) { if (typeof childNode.type === "string") { var childContext = { node: childNode, parentKey: prop, parentPath: path, shouldStop: false, inList: Array.isArray(value) }; innerWalk(childContext, callback); } }); }); } innerWalk(context, callback); } var noop = function noop() {}; export function traverse(node, visitors) { var before = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : noop; var after = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : noop; Object.keys(visitors).forEach(function (visitor) { if (!nodeAndUnionTypes.includes(visitor)) { throw new Error("Unexpected visitor ".concat(visitor)); } }); var context = { node: node, inList: false, shouldStop: false, parentPath: null, parentKey: null }; walk(context, function (type, path) { if (typeof visitors[type] === "function") { before(type, path); visitors[type](path); after(type, path); } var unionTypes = unionTypesMap[type]; if (!unionTypes) { throw new Error("Unexpected node type ".concat(type)); } unionTypes.forEach(function (unionType) { if (typeof visitors[unionType] === "function") { before(unionType, path); visitors[unionType](path); after(unionType, path); } }); }); }