mirror of
https://github.com/github/codeql.git
synced 2026-05-26 00:51:25 +02:00
10 lines
101 B
JavaScript
10 lines
101 B
JavaScript
function f(x) {
|
|
switch (x) {
|
|
case 1:
|
|
case 2:
|
|
case3:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
} |