swc_ecma_transforms_compat::es2016

Function exponentiation

source
pub fn exponentiation() -> impl Fold + VisitMut
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);