mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
10 lines
278 B
TypeScript
10 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);
|
||
|
};
|