()
| 94 | |
| 95 | // Create readline interface for user input |
| 96 | function createInterface() { |
| 97 | return readline.createInterface({ |
| 98 | input: process.stdin, |
| 99 | output: process.stdout, |
| 100 | }); |
| 101 | } |
| 102 | |
| 103 | // Ask user for confirmation |
| 104 | async function askForConfirmation(question) { |
no outgoing calls
no test coverage detected