|  | ||||
|---|---|---|---|---|
| .. | ||||
| lib | 11e3a9652a | 7 anni fa | ||
| .npmignore | 11e3a9652a | 7 anni fa | ||
| README.md | 11e3a9652a | 7 anni fa | ||
| package.json | 11e3a9652a | 7 anni fa | ||
Compile ES2015 template literals to ES5
In
`foo${bar}`;
Out
"foo" + bar;
npm install --save-dev babel-plugin-transform-es2015-template-literals
.babelrc (Recommended).babelrc
// without options
{
  "plugins": ["transform-es2015-template-literals"]
}
// with options
{
  "plugins": [
    ["transform-es2015-template-literals", {
      "loose": true,
      "spec": true
    }]
  ]
}
babel --plugins transform-es2015-template-literals script.js
require("babel-core").transform("code", {
  plugins: ["transform-es2015-template-literals"]
});
looseIn loose mode, tagged template literal objects aren't frozen.
specThis option wraps all template literal expressions with String. See babel/babel#1065 for more info.
In
`foo${bar}`;
Out
"foo" + String(bar);