You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
500 B
26 lines
500 B
2 years ago
|
'use strict';
|
||
|
const util = require('util');
|
||
|
|
||
|
let installed = false;
|
||
|
|
||
|
const hardRejection = (log = console.error) => {
|
||
|
if (installed) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
installed = true;
|
||
|
|
||
|
process.on('unhandledRejection', error => {
|
||
|
if (!(error instanceof Error)) {
|
||
|
error = new Error(`Promise rejected with value: ${util.inspect(error)}`);
|
||
|
}
|
||
|
|
||
|
log(error.stack);
|
||
|
process.exit(1);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports = hardRejection;
|
||
|
// TODO: Remove this for the next major release
|
||
|
module.exports.default = hardRejection;
|