mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
8 lines
92 B
JavaScript
8 lines
92 B
JavaScript
export async function foo(x) {
|
|
try {
|
|
await x;
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
};
|