swc_ecma_transforms_compat::es2016Function exponentiation
source pub fn exponentiation() -> impl Fold + VisitMut
Expand description
@babel/plugin-transform-exponentiation-operator
§Example
let x = 10 ** 2;
x **= 3;
§Out
let x = Math.pow(10, 2);
x = Math.pow(x, 3);