@babel/plugin-transform-exponentiation-operator
信息
此插件包含在 @babel/preset-env
中,位于 ES2016
示例
输入
JavaScript
let x = 10 ** 2;
x **= 3;
输出
JavaScript
let x = Math.pow(10, 2);
x = Math.pow(x, 3);
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-exponentiation-operator
yarn add --dev @babel/plugin-transform-exponentiation-operator
pnpm add --save-dev @babel/plugin-transform-exponentiation-operator
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-transform-exponentiation-operator"]
}
通过 CLI
Shell
babel --plugins @babel/plugin-transform-exponentiation-operator script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-exponentiation-operator"],
});