babel-plugin-syntax-exponentiation-operator

js
Allow parsing of the exponentiation operator
Version 6.13.0 License MIT
Keywords
babel-plugin
INSTALL
Type:
Version:
- Static
- Latest Patch
- Latest Minor
- Latest Major
- 6.13.0
- 6.8.0
- 6.5.0
- 6.3.13
- 6.2.4
- 6.1.18
- 6.1.17
- 6.1.16
- 6.1.13
- 6.1.10
- 6.1.8
- 6.1.7
- 6.1.6
- 6.1.5
- 6.1.4
- 6.0.14
- 6.0.2
- 7.0.0-beta.0
- 7.0.0-alpha.20
- 7.0.0-alpha.19
- 7.0.0-alpha.18
- 7.0.0-alpha.17
- 7.0.0-alpha.16
- 7.0.0-alpha.15
- 7.0.0-alpha.14
- 7.0.0-alpha.13
- 7.0.0-alpha.12
- 7.0.0-alpha.9
- 7.0.0-alpha.3
- 7.0.0-alpha.1
- 6.5.0-1
<script src=" https://cdn.jsdelivr.net/npm/babel-plugin-syntax-exponentiation-operator@6.13.0/lib/index.min.js "></script>
babel-plugin-syntax-exponentiation-operator
Allow parsing of the exponentiation operator.
Installation
$ npm install babel-plugin-syntax-exponentiation-operator
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-exponentiation-operator"]
}
Via CLI
$ babel --plugins syntax-exponentiation-operator script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-exponentiation-operator"]
});