Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

@babel/plugin-transform-exponentiation-operator

Example

In

let x = 10 ** 2;

x **= 3;

Out

let x = Math.pow(10, 2);

x = Math.pow(x, 3);

Installation

npm install --save-dev @babel/plugin-transform-exponentiation-operator

Usage

With a configuration file (Recommended)

{
  "plugins": ["@babel/plugin-transform-exponentiation-operator"]
}

Via CLI

babel --plugins @babel/plugin-transform-exponentiation-operator script.js

Via Node API

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

References

  • Spec: Exponentiation Operator
  • Proposal: Exponentiation Operator
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
  • References
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site