|
|
2 éve | |
|---|---|---|
| .. | ||
| lib | 2 éve | |
| .npmignore | 2 éve | |
| README.md | 2 éve | |
| package.json | 2 éve | |
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);