chensenlai 10988628a0 语音房项目初始化 5 yıl önce
..
lib 10988628a0 语音房项目初始化 5 yıl önce
.npmignore 10988628a0 语音房项目初始化 5 yıl önce
README.md 10988628a0 语音房项目初始化 5 yıl önce
package.json 10988628a0 语音房项目初始化 5 yıl önce

README.md

babel-plugin-transform-es2015-template-literals

Compile ES2015 template literals to ES5

Installation

$ npm install babel-plugin-transform-es2015-template-literals

Usage

Via .babelrc (Recommended)

.babelrc

// without options
{
  "plugins": ["transform-es2015-template-literals"]
}

// with options
{
  "plugins": [
    ["transform-es2015-template-literals", {
      "loose": true,
      "spec": true
    }]
  ]
}

Via CLI

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

Via Node API

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