shichen b6c5ecc67a init 10 months ago
..
lib b6c5ecc67a init 10 months ago
.npmignore b6c5ecc67a init 10 months ago
README.md b6c5ecc67a init 10 months ago
package.json b6c5ecc67a init 10 months ago

README.md

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