mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
|
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();
|