(stop, run)
| 111 | * Reusable prompts |
| 112 | */ |
| 113 | function runAgain(stop, run){ |
| 114 | return Prompt({ |
| 115 | type: 'list', |
| 116 | name: 'runAgain', |
| 117 | message: stop + ' or ' + run, |
| 118 | choices: [ |
| 119 | {name: stop, value: false}, |
| 120 | {name: run, value: true} |
| 121 | ] |
| 122 | }) |
| 123 | } |
| 124 | |
| 125 | function continuePrompt(){ |
| 126 | return Prompt({ |