/usr/local/lib/node_modules/pm2/node_modules/enquirer/lib/prompts
NameSizeModeActions
autocomplete.js29250644editdlrm
basicauth.js9660644editdlrm
confirm.js2750644editdlrm
editable.js31770644editdlrm
form.js50890644editdlrm
index.js10580644editdlrm
input.js12840644editdlrm
invisible.js1790644editdlrm
list.js8110644editdlrm
multiselect.js1920644editdlrm
numeral.js450644editdlrm
password.js4320644editdlrm
quiz.js10270644editdlrm
scale.js68420644editdlrm
select.js39350644editdlrm
snippet.js45310644editdlrm
sort.js8970644editdlrm
survey.js44530644editdlrm
text.js370644editdlrm
toggle.js22290644editdlrm
Edit: /usr/local/lib/node_modules/pm2/node_modules/enquirer/lib/prompts/quiz.js (1027B)
'use strict'; const SelectPrompt = require('./select'); class Quiz extends SelectPrompt { constructor(options) { super(options); if (typeof this.options.correctChoice !== 'number' || this.options.correctChoice < 0) { throw new Error('Please specify the index of the correct answer from the list of choices'); } } async toChoices(value, parent) { let choices = await super.toChoices(value, parent); if (choices.length < 2) { throw new Error('Please give at least two choices to the user'); } if (this.options.correctChoice > choices.length) { throw new Error('Please specify the index of the correct answer from the list of choices'); } return choices; } check(state) { return state.index === this.options.correctChoice; } async result(selected) { return { selectedAnswer: selected, correctAnswer: this.options.choices[this.options.correctChoice].value, correct: await this.check(this.state) }; } } module.exports = Quiz;