跳至主内容

@babel/plugin-transform-json-strings

非官方测试版翻译

本页面由 PageTurner AI 翻译(测试版)。未经项目官方认可。 发现错误? 报告问题 →

信息

此插件已包含在 @babel/preset-env 中,属于 ES2019 标准的一部分。

示例

输入

JavaScript
const ex = "before
after";
// ^ There's a U+2028 char between 'before' and 'after'

输出

JavaScript
const ex = "before\u2028after";
// ^ There's a U+2028 char between 'before' and 'after'

安装

npm install --save-dev @babel/plugin-transform-json-strings

用法

通过配置文件(推荐)

babel.config.json
{
"plugins": ["@babel/plugin-transform-json-strings"]
}

通过命令行

Shell
babel --plugins @babel/plugin-transform-json-strings script.js

通过 Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-json-strings"],
});

参考