SourceTermAnalysisSystem_vue/node_modules/jsonc-eslint-parser/lib/parser/utils.js
2026-05-15 10:22:44 +08:00

9 lines
259 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isRegExpLiteral = void 0;
function isRegExpLiteral(node) {
return (Boolean(node.regex) ||
node.raw.startsWith("/"));
}
exports.isRegExpLiteral = isRegExpLiteral;