项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 年之前
..
lib [Version] V.3.8 4 年之前
.npmignore [Version] V.3.8 4 年之前
README.md [Version] V.3.8 4 年之前
package.json [Version] V.3.8 4 年之前

README.md

babel-plugin-transform-es2015-literals

Compile ES2015 unicode string and number literals to ES5

Example

In

var b = 0b11; // binary integer literal
var o = 0o7; // octal integer literal
const u = 'Hello\u{000A}\u{0009}!'; // unicode string literals, newline and tab

Out

var b = 3; // binary integer literal
var o = 7; // octal integer literal
const u = 'Hello\n\t!'; // unicode string literals, newline and tab

Installation

npm install --save-dev babel-plugin-transform-es2015-literals

Usage

.babelrc

{
  "plugins": ["transform-es2015-literals"]
}

Via CLI

babel --plugins transform-es2015-literals script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-es2015-literals"]
});