exit_handler.js 236 B

123456789101112131415
  1. class ExitHandler {
  2. constructor(onExit) {
  3. this._onExit = onExit;
  4. }
  5. install() {
  6. process.on('exit', this._onExit);
  7. }
  8. uninstall() {
  9. process.removeListener('exit', this._onExit);
  10. }
  11. }
  12. module.exports = ExitHandler;