swc/ecmascript/minifier/tests/terser/compress/const/issue_1191/input.js

6 lines
101 B
JavaScript
Raw Normal View History

function foo(rot) {
const rotTol = 5;
if (rot < -rotTol || rot > rotTol) bar();
baz();
}