UNPKG

svcorelib

Version:

Core library used in the projects of Sv443 and the Sv443 Network. Contains tons of miscellaneous QoL features.

15 lines (11 loc) 314 B
function noShutdown() { if(process.scl != undefined && process.scl.noShutdown) return; if(process.scl == undefined) process.scl = {}; process.scl.noShutdown = true; process.on("SIGINT", ()=>{}); process.on("SIGTERM", ()=>{}); } module.exports = noShutdown;