Example #1
0
function Checkbox() {
  debug('initializing from <%s>', __filename);
  Prompt.apply(this, arguments);
  this.errorMessage = null;
  this.infoMessage = this.options.infoMessage || '(Press '
    + cyan('<space>')
    + ' to toggle)';
}
Example #2
0
function Password() {
  Prompt.apply(this, arguments);
  debug('initializing from <%s>', __filename);
}