|
|
hace 2 años | |
|---|---|---|
| .. | ||
| lib | hace 2 años | |
| .npmignore | hace 2 años | |
| README.md | hace 2 años | |
| package.json | hace 2 años | |
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);