svcorelib
Version:
Core library used in the projects of Sv443 and the Sv443 Network. Contains tons of miscellaneous QoL features.
15 lines (11 loc) • 338 B
JavaScript
function yesShutdown()
{
if(process.scl != undefined && !process.scl.noShutdown)
return;
if(process.scl == undefined)
process.scl = {};
process.scl.noShutdown = false;
process.on("SIGINT", ()=>process.exit());
process.on("SIGTERM", ()=>process.exit());
}
module.exports = yesShutdown;