跳至主要內容

@babel/plugin-transform-json-strings

資訊

此外掛程式包含在 @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"]
}

透過 CLI

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

透過 Node API

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

參考