@samchon/openapi
Version:
OpenAPI definitions and converters for 'typia' and 'nestia'.
48 lines (47 loc) • 861 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Escaper = void 0;
var Escaper;
(function (Escaper) {
Escaper.variable = (str) => Escaper.reserved(str) === false && /^[a-zA-Z_$][a-zA-Z_$0-9]*$/g.test(str);
Escaper.reserved = (str) => RESERVED.has(str);
})(Escaper || (exports.Escaper = Escaper = {}));
const RESERVED = new Set([
"break",
"case",
"catch",
"class",
"const",
"continue",
"debugger",
"default",
"delete",
"do",
"else",
"enum",
"export",
"extends",
"false",
"finally",
"for",
"function",
"if",
"import",
"in",
"instanceof",
"new",
"null",
"package",
"return",
"super",
"switch",
"this",
"throw",
"true",
"try",
"typeof",
"var",
"void",
"while",
"with",
]);
;