Issues (8)

src/bar.js (1 issue)

1
export const bar = (baz) => {
2
  return baz ? 1 : (baz ? 3 : 4);
3
4
  console.log(100) // unreachable
0 ignored issues
show
This code is unreachable and can thus be removed without consequences.
Loading history...
5
}
6
7
8
if (a == b) {
9
  console.log(1);
10
}
11