You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/events/process/unhandledRejection.js

7 lines
157 B
JavaScript

export default {
name: 'unhandledRejection',
async execute(error) {
return console.error(`\x1b[31mUncaught Promise Rejection: ${error}\x1b[37m`);
},
};