Function swc_ecma_transforms_compat::es2016::exponentation[][src]

pub fn exponentation() -> impl Fold

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