deno/tests/async_error.ts
2018-08-17 12:43:21 -04:00

9 lines
136 B
TypeScript

console.log("hello");
const foo = async () => {
console.log("before error");
throw Error("error");
};
foo();
console.log("world");