forked from dachan/dach
11 lines
194 B
JavaScript
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')
|