Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 1.03 KB

plugin-proposal-json-strings.md

File metadata and controls

57 lines (40 loc) · 1.03 KB
Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 2 column 8
---
id: babel-plugin-proposal-json-strings
title: @babel/plugin-proposal-json-strings
sidebar_label: json-strings
---

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

Examples

In

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

Out

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

Installation

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

Usage

With a configuration file (Recommended)

{
  "plugins": ["@babel/plugin-proposal-json-strings"]
}

Via CLI

babel --plugins @babel/plugin-proposal-json-strings script.js

Via Node API

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

References