CleverStack/cleverstack-cli

View on GitHub
lib/repl/commands/exit.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function() {
  function Exit() {
    this.help    = 'Exits the CleverStack REPL';
    this.aliases = ['quit', 'q'];
  }

  Exit.prototype.action = function() {
    process.exit(0);
  };
  
  return Exit;
};