mirror of
https://github.com/seejohnrun/haste-server.git
synced 2025-12-18 11:51:28 +00:00
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
function q(qooo) {
|
|
var a;
|
|
foo: for(;;) {
|
|
a++;
|
|
if (something) break foo;
|
|
return qooo;
|
|
}
|
|
}
|