We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fec35a commit d4f3b10Copy full SHA for d4f3b10
crates/swc_ecma_minifier/src/compress/pure/misc.rs
@@ -598,11 +598,13 @@ impl Pure<'_> {
598
if let Some(ExprOrSpread { spread: None, expr }) = elem {
599
match &*expr {
600
e if is_pure_undefined(self.expr_ctx, e) => {
601
- // null and undefined should become empty strings in join
+ // null and undefined should become empty strings in
602
+ // join
603
// Don't add anything for empty string join
604
}
605
Expr::Lit(Lit::Null(..)) => {
606
607
608
609
610
_ => {
0 commit comments