mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
'use strict';
|
|
|
|
const BooleanPrompt = require('../types/boolean');
|
|
|
|
class ConfirmPrompt extends BooleanPrompt {
|
|
constructor(options) {
|
|
super(options);
|
|
this.default = this.options.default || (this.initial ? '(Y/n)' : '(y/N)');
|
|
}
|
|
}
|
|
|
|
module.exports = ConfirmPrompt;
|
|
|