mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
166 B
JavaScript
14 lines
166 B
JavaScript
function f(x,) {
|
|
f(0,);
|
|
}
|
|
|
|
async function g(y, xs) {
|
|
let v = null;
|
|
try {
|
|
for(const x of xs) {
|
|
v = await h(x, y);
|
|
}
|
|
} catch(e) { }
|
|
return v;
|
|
}
|