mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
git-subtree-dir: packages/pg-pool git-subtree-mainline: 69345eb96aa2552b288247960aa7126d41210eb6 git-subtree-split: cb96ae2d6e37b1414df405d80258e0e2bafeaba0
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
const crash = reason => {
|
|
process.on(reason, err => {
|
|
console.error(reason, err.stack)
|
|
process.exit(-1)
|
|
})
|
|
}
|
|
|
|
crash('unhandledRejection')
|
|
crash('uncaughtError')
|
|
crash('warning')
|