Allow parsing of the exponentiation operator
Allow parsing of the exponentiation operator.
``sh`
$ npm install babel-plugin-syntax-exponentiation-operator
.babelrc
`json`
{
"plugins": ["syntax-exponentiation-operator"]
}
`sh`
$ babel --plugins syntax-exponentiation-operator script.js
`javascript``
require("babel-core").transform("code", {
plugins: ["syntax-exponentiation-operator"]
});