(value)
| 19 | return i.question(q + ': '); |
| 20 | }, |
| 21 | out(value) { |
| 22 | if (value.type === 'str') { |
| 23 | console.log(chalk.magenta(value.value)); |
| 24 | } else { |
| 25 | console.log(chalk.magenta(valToString(value))); |
| 26 | } |
| 27 | }, |
| 28 | err(e) { |
| 29 | console.log(chalk.red(`${e}`)); |
| 30 | }, |
nothing calls this directly
no test coverage detected