mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
|
console.log(
|
||
|
(function (c) {
|
||
|
var undefined = 42;
|
||
|
return (function () {
|
||
|
c--;
|
||
|
c--, c.toString();
|
||
|
return;
|
||
|
})();
|
||
|
})()
|
||
|
);
|