blob: 16f30b33d2a8695f8371e6bbef1a79bb59f7d966 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import process from "node:process";
//deno-lint-ignore no-undef
// @ts-ignore - Node typings don't even have this because it's
// been deprecated for 4 years. But it's used in `signal-exit`,
// which in turn is used in `node-tap`.
process.reallyExit = function () {
console.info("really exited");
};
process.exit();
|