swc_ecma_compat_es2016

Function exponentiation

source
pub fn exponentiation() -> impl Pass
Expand description

@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);