UNPKG

194 BJavaScriptView Raw
1const crash = (reason) => {
2 process.on(reason, (err) => {
3 console.error(reason, err.stack)
4 process.exit(-1)
5 })
6}
7
8crash('unhandledRejection')
9crash('uncaughtError')
10crash('warning')