| 11 | |
| 12 | // Define the class that extends the Transform stream |
| 13 | class MjpegParser extends Transform { |
| 14 | private buffer: Buffer | null = null; |
| 15 | private reading: boolean = false; |
| 16 | private contentLength: number | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected