chensenlai 10988628a0 语音房项目初始化 | 5 년 전 | |
---|---|---|
.. | ||
lib | 5 년 전 | |
node_modules | 5 년 전 | |
.npmignore | 5 년 전 | |
README.md | 5 년 전 | |
package.json | 5 년 전 |
Compile ES2015 constants to ES5
$ npm install babel-plugin-transform-es2015-constants
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-es2015-constants"]
}
$ babel --plugins transform-es2015-constants script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-constants"]
});
This transform on its own will compile const
to let
. If you need it to compile down to var
then you must also install and enable transform-es2015-block-scoping
.