chensenlai 10988628a0 语音房项目初始化 | vor 5 Jahren | |
---|---|---|
.. | ||
lib | vor 5 Jahren | |
node_modules | vor 5 Jahren | |
.npmignore | vor 5 Jahren | |
README.md | vor 5 Jahren | |
package.json | vor 5 Jahren |
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
.