intern-Assignment/Node-Assignments/formPrac/node_modules/pg-pool/test/setup.js
2025-01-31 15:20:39 +05:30

11 lines
194 B
JavaScript

const crash = (reason) => {
process.on(reason, (err) => {
console.error(reason, err.stack)
process.exit(-1)
})
}
crash('unhandledRejection')
crash('uncaughtError')
crash('warning')