File size: 175 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
const shouldRun = () => false;
export default function run() {
if (shouldRun()) {
var x = true;
}
if (x) {
return 'should not run';
}
return 'should run';
} |