Compile ES2015 constants to ES5
Validate ES2015 constants
``sh`
$ npm install babel-plugin-check-es2015-constants
.babelrc
`json`
{
"plugins": ["check-es2015-constants"]
}
`sh`
$ babel --plugins check-es2015-constants script.js
`javascript`
require("babel-core").transform("code", {
plugins: ["check-es2015-constants"]
});
This check will only validate consts. If you need it to compile down to var then you must also install and enable check-es2015-block-scoping`.