1 2 3 4 5 6 7 8
pub use self::exponentation::exponentation;
use swc_ecma_visit::Fold;
mod exponentation;
pub fn es2016() -> impl Fold {
exponentation()
}
1 2 3 4 5 6 7 8
pub use self::exponentation::exponentation;
use swc_ecma_visit::Fold;
mod exponentation;
pub fn es2016() -> impl Fold {
exponentation()
}