Skip to main content

@babel/plugin-transform-json-strings

信息

此插件包含在 @babel/preset-env 中,在 ES2019

¥This plugin is included in @babel/preset-env, in ES2019

示例

¥Examples

输入

¥In

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

输出

¥Out

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

安装

¥Installation

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

用法

¥Usage

¥With a configuration file (Recommended)

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

通过 CLI

¥Via CLI

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

通过 Node API

¥Via Node API

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

参考

¥References