Opal-Estate-Pro/node_modules/babel-plugin-syntax-exponentiation-operator/README.md
2019-09-13 09:44:33 +07:00

36 lines
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"]
});
```