1 | export const bar = (baz) => { |
||
2 | return baz ? 1 : (baz ? 3 : 4); |
||
3 | |||
4 | console.log(100) // unreachable |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
5 | } |
||
6 | |||
7 | |||
8 | if (a == b) { |
||
9 | console.log(1); |
||
10 | } |
||
11 |