(message: string = "Are you sure you want to proceed? [N/y]")
| 1 | import readline from 'readline-sync'; |
| 2 | |
| 3 | export const confirmAction = (message: string = "Are you sure you want to proceed? [N/y]") => { |
| 4 | const response = readline.question(message).toLowerCase(); |
| 5 | if (response !== 'y') { |
| 6 | console.log("Aborted."); |
| 7 | process.exit(0); |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | export const abort = () => { |
| 12 | console.log("Aborted."); |
no outgoing calls
no test coverage detected