(questionText: string)
| 43 | const DEFAULT_PROMPT = "> "; |
| 44 | |
| 45 | export function question(questionText: string) { |
| 46 | return prompt(questionText); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Test-friendly function that prompts the user for input. If running in a |
no test coverage detected