babel/packages/babel-plugin-exponentiation-operator

babel-plugin-exponentiation-operator

Compile exponentiation operator to ES5

Installation

$ npm install babel-plugin-exponentiation-operator

Usage

.babelrc

{
  "plugins": ["exponentiation-operator"]
}

Via CLI

$ babel --plugins exponentiation-operator script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["exponentiation-operator"]
});