mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
7 lines
64 B
JavaScript
7 lines
64 B
JavaScript
function foo(a, b) {
|
|
while (a) {
|
|
break;
|
|
}
|
|
return b;
|
|
}
|