/var/www/greso.tech/server/nsm/node_modules/@babel/parser/lib/util
NameSizeModeActions
class-scope.js27330644editdlrm
class-scope.js.map67670644editdlrm
expression-scope.js38710644editdlrm
expression-scope.js.map131050644editdlrm
identifier.js23080644editdlrm
identifier.js.map31130644editdlrm
location.js9250644editdlrm
location.js.map21640644editdlrm
production-parameter.js12750644editdlrm
production-parameter.js.map38760644editdlrm
scope.js52740644editdlrm
scope.js.map138120644editdlrm
scopeflags.js64640644editdlrm
scopeflags.js.map102770644editdlrm
whitespace.js15470644editdlrm
whitespace.js.map38570644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/@babel/parser/lib/util/identifier.js (2308B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.canBeReservedWord = canBeReservedWord; Object.defineProperty(exports, "isIdentifierChar", { enumerable: true, get: function () { return _helperValidatorIdentifier.isIdentifierChar; } }); Object.defineProperty(exports, "isIdentifierStart", { enumerable: true, get: function () { return _helperValidatorIdentifier.isIdentifierStart; } }); exports.isIteratorStart = isIteratorStart; Object.defineProperty(exports, "isKeyword", { enumerable: true, get: function () { return _helperValidatorIdentifier.isKeyword; } }); Object.defineProperty(exports, "isReservedWord", { enumerable: true, get: function () { return _helperValidatorIdentifier.isReservedWord; } }); Object.defineProperty(exports, "isStrictBindOnlyReservedWord", { enumerable: true, get: function () { return _helperValidatorIdentifier.isStrictBindOnlyReservedWord; } }); Object.defineProperty(exports, "isStrictBindReservedWord", { enumerable: true, get: function () { return _helperValidatorIdentifier.isStrictBindReservedWord; } }); Object.defineProperty(exports, "isStrictReservedWord", { enumerable: true, get: function () { return _helperValidatorIdentifier.isStrictReservedWord; } }); exports.keywordRelationalOperator = void 0; var _helperValidatorIdentifier = require("@babel/helper-validator-identifier"); const keywordRelationalOperator = /^in(stanceof)?$/; exports.keywordRelationalOperator = keywordRelationalOperator; function isIteratorStart(current, next, next2) { return current === 64 && next === 64 && (0, _helperValidatorIdentifier.isIdentifierStart)(next2); } const reservedWordLikeSet = new Set(["break", "case", "catch", "continue", "debugger", "default", "do", "else", "finally", "for", "function", "if", "return", "switch", "throw", "try", "var", "const", "while", "with", "new", "this", "super", "class", "extends", "export", "import", "null", "true", "false", "in", "instanceof", "typeof", "void", "delete", "implements", "interface", "let", "package", "private", "protected", "public", "static", "yield", "eval", "arguments", "enum", "await"]); function canBeReservedWord(word) { return reservedWordLikeSet.has(word); } //# sourceMappingURL=identifier.js.map