File size: 143 Bytes
1e92f2d
 
 
 
 
1
2
3
4
5
6
module.exports = (...args) => {
  console.error('\n🚨 Error:', args[0], '🚨\n\n', ...args.slice(1), '\n');
  process.exit(1);
  return;
};