swc/crates/swc_ecma_minifier/tests/fixture/issues/2028/output.mangleOnly.js
2022-06-15 14:36:57 +00:00

11 lines
155 B
JavaScript

function a(a) {
return a != null;
}
function b(b, c) {
if (b == null || a(b)) {
return true;
}
return false;
}
module.exports = b;