This website requires JavaScript.
Explore
Help
Sign In
swc-project
/
swc
Watch
1
Star
1
Fork
0
You've already forked swc
mirror of
https://github.com/swc-project/swc.git
synced
2024-12-30 17:15:11 +03:00
Code
Issues
Actions
5
Packages
Projects
Releases
Wiki
Activity
427df9a979
swc
/
ecmascript
/
minifier
/
tests
/
terser
/
compress
/
rename
/
mangle_catch
/
output.js
8 lines
83 B
JavaScript
Raw
Normal View
History
Unescape
Escape
feat(es/minifier): Implement minifier partially (#1302) Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
2021-05-20 07:51:30 +03:00
var
a
=
"FAIL"
;
try
{
throw
1
;
feat(es/minifier): Implement more rules (#1735) swc_ecma_minifier: - Implement `evaluate` partially. - Store 'expected output' from terser along with our result. swc_ecma_transforms_base: - `fixer`: Don't wrap `+ (a % b)`. swc_ecma_transforms_optimization: - `expr_simplifier`: Preserve this in calls.
2021-05-25 10:39:07 +03:00
}
catch
(
b
)
{
feat(es/minifier): Implement minifier partially (#1302) Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
2021-05-20 07:51:30 +03:00
a
=
"PASS"
;
}
console
.
log
(
a
)
;
Reference in New Issue
Copy Permalink