1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/plugin-proposal-json-strings/lib/index.js

40 lines
956 B
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
2024-01-16 21:26:16 +08:00
var _helperPluginUtils = require("@babel/helper-plugin-utils");
2023-12-18 13:12:25 +08:00
2024-01-16 21:26:16 +08:00
var _pluginSyntaxJsonStrings = require("@babel/plugin-syntax-json-strings");
2023-12-18 13:12:25 +08:00
2024-01-16 21:26:16 +08:00
var _default = (0, _helperPluginUtils.declare)(api => {
2023-12-18 13:12:25 +08:00
api.assertVersion(7);
const regex = /(\\*)([\u2028\u2029])/g;
function replace(match, escapes, separator) {
const isEscaped = escapes.length % 2 === 1;
if (isEscaped) return match;
return `${escapes}\\u${separator.charCodeAt(0).toString(16)}`;
}
return {
name: "proposal-json-strings",
2024-01-16 21:26:16 +08:00
inherits: _pluginSyntaxJsonStrings.default,
2023-12-18 13:12:25 +08:00
visitor: {
"DirectiveLiteral|StringLiteral"({
node
}) {
const {
extra
} = node;
2024-01-16 21:26:16 +08:00
if (!(extra != null && extra.raw)) return;
2023-12-18 13:12:25 +08:00
extra.raw = extra.raw.replace(regex, replace);
}
}
};
});
exports.default = _default;