limepot-xyz/BETA/mybulma/node_modules/hard-rejection/index.js
LimePot 76722fec47 Beta Site
Going to slowly work on a Bulma site, which will end up being the main site.

Currently under the /BETA/ folder so Alpha site will still be main site.
2022-12-20 16:23:37 -07:00

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