mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
|
var a, c;
|
||
|
console.log(
|
||
|
(function (n) {
|
||
|
return function () {
|
||
|
return a ? b : c ? d : void 0;
|
||
|
};
|
||
|
})(1)()
|
||
|
);
|