swc/crates/swc_ecma_minifier/tests/fixture/issues/2028/output.mangleOnly.js
Donny/강동윤 7f69b9c80f
test(es/minifier): Add snapshots for the mangler (#4823)
I found a way to make the name mangler parallel, but I want to ensure that we don't break anything.
2022-05-27 07:32:23 +00:00

11 lines
155 B
JavaScript

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