* Revert "Move subclass inheritance to end (#7772)"
This reverts commit f8ab9466d3.
* Only use getPrototypeOf if setPrototypeOf is implemented
* Update fixtures
* Helpers updates
* Update fixtures
* Fall back to getPrototypeOf
* Update fixtures
@babel/plugin-transform-exponentiation-operator
Compile exponentiation operator to ES5
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
Via .babelrc (Recommended)
.babelrc
{
"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"]
});