Last change
on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
956 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
---|
| 4 | value: true
|
---|
| 5 | });
|
---|
| 6 | exports.default = void 0;
|
---|
| 7 |
|
---|
| 8 | var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
---|
| 9 |
|
---|
| 10 | var _pluginSyntaxJsonStrings = require("@babel/plugin-syntax-json-strings");
|
---|
| 11 |
|
---|
| 12 | var _default = (0, _helperPluginUtils.declare)(api => {
|
---|
| 13 | api.assertVersion(7);
|
---|
| 14 | const regex = /(\\*)([\u2028\u2029])/g;
|
---|
| 15 |
|
---|
| 16 | function replace(match, escapes, separator) {
|
---|
| 17 | const isEscaped = escapes.length % 2 === 1;
|
---|
| 18 | if (isEscaped) return match;
|
---|
| 19 | return `${escapes}\\u${separator.charCodeAt(0).toString(16)}`;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | return {
|
---|
| 23 | name: "proposal-json-strings",
|
---|
| 24 | inherits: _pluginSyntaxJsonStrings.default,
|
---|
| 25 | visitor: {
|
---|
| 26 | "DirectiveLiteral|StringLiteral"({
|
---|
| 27 | node
|
---|
| 28 | }) {
|
---|
| 29 | const {
|
---|
| 30 | extra
|
---|
| 31 | } = node;
|
---|
| 32 | if (!(extra != null && extra.raw)) return;
|
---|
| 33 | extra.raw = extra.raw.replace(regex, replace);
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | }
|
---|
| 37 | };
|
---|
| 38 | });
|
---|
| 39 |
|
---|
| 40 | exports.default = _default; |
---|
Note:
See
TracBrowser
for help on using the repository browser.