This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/hard-rejection/index.js
2020-11-01 22:46:04 +00:00

26 lines
500 B
JavaScript

'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;