swc/ecmascript/minifier/tests/terser/compress/sequences/unsafe_undefined/output.js

7 lines
127 B
JavaScript
Raw Normal View History

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