swc_ecma_compat_es2016/
lib.rs

1#![allow(clippy::boxed_local)]
2#![allow(clippy::vec_box)]
3
4use swc_ecma_ast::Pass;
5
6pub use self::exponentiation::exponentiation;
7
8mod exponentiation;
9
10pub fn es2016() -> impl Pass {
11    exponentiation()
12}