mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +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;
|
|
|