mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 19:47:10 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
(function () {
|
|
return function (o, i) {
|
|
while (i--) console.log(f(o));
|
|
};
|
|
function f(a) {
|
|
var b = a.b;
|
|
return b || a;
|
|
}
|
|
})()({ b: "PASS" }, 1);
|