mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
|
async function fn() {
|
||
|
throw new Error("message");
|
||
|
}
|
||
|
async function call() {
|
||
|
try {
|
||
|
console.log("before await fn()");
|
||
|
await fn();
|
||
|
console.log("after await fn()");
|
||
|
} catch (error) {
|
||
|
console.log("catch");
|
||
|
}
|
||
|
console.log("after try-catch");
|
||
|
}
|
||
|
call().catch(() => console.log("outer catch"));
|