mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
console.log(
|
|
(function (a) {
|
|
return (function () {
|
|
return a + 1;
|
|
})();
|
|
})(1),
|
|
(function (a) {
|
|
return (function (a) {
|
|
return a === undefined;
|
|
})();
|
|
})(2)
|
|
);
|