mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
|
console.log(
|
||
|
(function (a) {
|
||
|
if (a != 0);
|
||
|
switch (a) {
|
||
|
case 0:
|
||
|
return "FAIL";
|
||
|
case false:
|
||
|
return "PASS";
|
||
|
}
|
||
|
})(false)
|
||
|
);
|