mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
20 lines
372 B
TypeScript
20 lines
372 B
TypeScript
|
import process from "node:process";
|
||
|
|
||
|
//deno-lint-ignore no-undef
|
||
|
process.on("exit", () => {
|
||
|
console.log(1);
|
||
|
});
|
||
|
|
||
|
function unexpected() {
|
||
|
console.log(null);
|
||
|
}
|
||
|
//deno-lint-ignore no-undef
|
||
|
process.on("exit", unexpected);
|
||
|
//deno-lint-ignore no-undef
|
||
|
process.removeListener("exit", unexpected);
|
||
|
|
||
|
//deno-lint-ignore no-undef
|
||
|
process.on("exit", () => {
|
||
|
console.log(2);
|
||
|
});
|