(value: string)
| 2375 | } |
| 2376 | // Synchronously add string as buffer |
| 2377 | addString(value: string): void { |
| 2378 | this.addBuffer(Buffer.from(value, "utf8")); |
| 2379 | } |
| 2380 | // Get current queued size |
| 2381 | getQueuedSize(): number { |
| 2382 | return this.queuedSize; |
no test coverage detected