Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(minifier):
Math.pow(a,b)
-> a ** (+b)
instead of `(+a) *…
…* (+b)` (oxc-project#9154) It's currently minifying twice through: `Math.pow(a, b)` -> `(+a) ** (+b)` -> `a ** (+b)` --------- Co-authored-by: 翠 / green <[email protected]>
- Loading branch information