(data: string | Buffer)
| 25 | |
| 26 | // Helper to process data through the buffer |
| 27 | function processInput(data: string | Buffer): void { |
| 28 | buffer.process(data); |
| 29 | } |
| 30 | |
| 31 | // Helper to wait for async operations |
| 32 | async function wait(ms: number): Promise<void> { |
no test coverage detected