(stream: Pick<Writable, 'write'>, text: string)
| 53 | } |
| 54 | |
| 55 | function write(stream: Pick<Writable, 'write'>, text: string): void { |
| 56 | stream.write(text) |
| 57 | } |
| 58 | |
| 59 | function buildTitle(question?: string): string { |
| 60 | const trimmed = question?.trim() |
no test coverage detected