mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
50223c5c53
Closes https://github.com/denoland/deno/issues/23342 Closes https://github.com/denoland/deno/issues/21757
9 lines
278 B
TypeScript
9 lines
278 B
TypeScript
import process from "node:process";
|
|
|
|
const originalEmit = process.emit;
|
|
process.emit = function (event, ...args) {
|
|
if (event === "exit" || event === "beforeExit") {
|
|
console.log(`${event} emitted from processEmit`);
|
|
}
|
|
return originalEmit.call(this, event, ...args);
|
|
};
|