swc/ecmascript/minifier/tests/terser/compress/sequences/unsafe_undefined/output.js
강동윤 99e738643a
feat(es/minifier): Implement rules and classify tests (#1750)
swc_ecma_minifier:
 - Classify tests so we can focus on MVP.
2021-05-28 19:44:03 +09:00

7 lines
124 B
JavaScript

function f(undefined) {
return a ? b : c ? d : void 0;
}
function g(undefined) {
return a ? b : c ? d : void e();
}