blob: aaa80c578a26a9f140e0302266a6f50335fbe041 (
plain)
1
2
3
4
5
6
7
8
9
|
globalThis.onunload = () => {
console.log("onunload is called");
// This second exit call doesn't trigger unload event,
// and therefore actually stops the process.
Deno.exit(1);
console.log("This doesn't show up in console");
};
// This exit call triggers the above unload event handler.
Deno.exit(0);
|