orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
36 lines (24 loc) • 514 B
Markdown
# babel-plugin-syntax-exponentiation-operator
Allow parsing of the exponentiation operator.
## Installation
```sh
$ npm install babel-plugin-syntax-exponentiation-operator
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["syntax-exponentiation-operator"]
}
```
### Via CLI
```sh
$ babel --plugins syntax-exponentiation-operator script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["syntax-exponentiation-operator"]
});
```