mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 12:03:47 +03:00
48bc26d3c9
swc_ecma_codegen: - Emit a semicolon before `!`. - Emit a semicolon before `[`. (#2007) swc_ecma_minifier: - Disable buggy passes. - `iife`: Don't inline async functions. (#2007)
9 lines
98 B
JavaScript
9 lines
98 B
JavaScript
"use strict";
|
|
const a = {
|
|
};
|
|
for(let b in a)a[b] = a[b].trim();
|
|
[
|
|
"foo",
|
|
].forEach(()=>{
|
|
});
|