(chunk)
| 211 | |
| 212 | return { |
| 213 | push(chunk) { |
| 214 | const bytes = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, "utf8"); |
| 215 | buffer = Buffer.concat([buffer, bytes]); |
| 216 | processBuffer(); |
| 217 | }, |
| 218 | isFramed() { |
| 219 | return framed; |
| 220 | }, |
nothing calls this directly
no test coverage detected