pub fn exponentiation() -> impl Pass
@babel/plugin-transform-exponentiation-operator
let x = 10 ** 2; x **= 3;
let x = Math.pow(10, 2); x = Math.pow(x, 3);