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 /
eslint-plugin /
lib /
rules /
Delete
Unzip
Name
Size
Permission
Date
Action
new-cap.cjs
350
B
-rw-r--r--
2024-02-26 08:46
no-invalid-this.cjs
1000
B
-rw-r--r--
2024-02-26 08:46
no-unused-expressions.cjs
1.11
KB
-rw-r--r--
2024-02-26 08:46
object-curly-spacing.cjs
481
B
-rw-r--r--
2024-02-26 08:46
semi.cjs
2.64
KB
-rw-r--r--
2024-02-26 08:46
Save
Rename
const ruleComposer = require("eslint-rule-composer"); const eslint = require("eslint"); const eslintVersion = eslint.ESLint.version; const noInvalidThisRule = new eslint.Linter().getRules().get("no-invalid-this"); if (parseInt(eslintVersion, 10) >= 8) { module.exports = noInvalidThisRule; } else { module.exports = ruleComposer.filterReports(noInvalidThisRule, problem => { let inClassMember = false; let node = problem.node; while (node) { if (node.type === "ClassPrivateMethod" || node.type === "ClassPrivateProperty" || node.type === "ClassProperty" || node.type === "PropertyDefinition" || node.type === "MethodDefinition" && node.key.type === "PrivateIdentifier") { inClassMember = true; break; } else if (node.type === "FunctionDeclaration" || node.type === "FunctionExpression") { inClassMember = false; break; } node = node.parent; } return !inClassMember; }); } //# sourceMappingURL=no-invalid-this.cjs.map