exit.mjs 112 B

1234
  1. export function exitWithApp (app) {
  2. console.log('Exit with app, ready:', app.isReady());
  3. process.exit(0);
  4. }