chensenlai 10988628a0 语音房项目初始化 | il y a 5 ans | |
---|---|---|
.. | ||
lib | il y a 5 ans | |
.npmignore | il y a 5 ans | |
README.md | il y a 5 ans | |
package.json | il y a 5 ans |
Compile ES2015 computed properties to ES5
$ npm install babel-plugin-transform-es2015-computed-properties
.babelrc
(Recommended).babelrc
// without options
{
"plugins": ["transform-es2015-computed-properties"]
}
// with options
{
"plugins": [
["transform-es2015-computed-properties", {
"loose": true
}]
]
}
$ babel --plugins transform-es2015-computed-properties script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-computed-properties"]
});