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 /
types /
lib /
converters /
Delete
Unzip
Name
Size
Permission
Date
Action
ensureBlock.js
330
B
-rw-r--r--
2024-02-26 08:46
gatherSequenceExpressions.js
2.34
KB
-rw-r--r--
2024-02-26 08:46
toBindingIdentifierName.js
390
B
-rw-r--r--
2024-02-26 08:46
toBlock.js
776
B
-rw-r--r--
2024-02-26 08:46
toComputedKey.js
448
B
-rw-r--r--
2024-02-26 08:46
toExpression.js
735
B
-rw-r--r--
2024-02-26 08:46
toIdentifier.js
734
B
-rw-r--r--
2024-02-26 08:46
toKeyAlias.js
1.02
KB
-rw-r--r--
2024-02-26 08:46
toSequenceExpression.js
544
B
-rw-r--r--
2024-02-26 08:46
toStatement.js
1017
B
-rw-r--r--
2024-02-26 08:46
valueToNode.js
2.45
KB
-rw-r--r--
2024-02-26 08:46
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = toIdentifier; var _isValidIdentifier = require("../validators/isValidIdentifier"); var _helperValidatorIdentifier = require("@babel/helper-validator-identifier"); function toIdentifier(input) { input = input + ""; let name = ""; for (const c of input) { name += (0, _helperValidatorIdentifier.isIdentifierChar)(c.codePointAt(0)) ? c : "-"; } name = name.replace(/^[-0-9]+/, ""); name = name.replace(/[-\s]+(.)?/g, function (match, c) { return c ? c.toUpperCase() : ""; }); if (!(0, _isValidIdentifier.default)(name)) { name = `_${name}`; } return name || "_"; } //# sourceMappingURL=toIdentifier.js.map