swc/ecmascript/minifier/tests/terser/compress/arrow/arrow_unused/output.js
강동윤 c6b22c57f8
feat(es/minifier): Implement minifier partially (#1302)
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
2021-05-20 13:51:30 +09:00

16 lines
244 B
JavaScript

let fn = (a) => {
console.log(a * a);
};
let u = (x, y) => x - y + g;
(() => {
console.log("0");
})();
!(function (x) {
(() => {
console.log("1");
})();
let baz = (e) => e + e;
console.log(baz(x));
})(1);
fn(3);