(_chunk: string | Buffer, encoding: string)
| 8 | |
| 9 | // Following the example in https://nodejs.org/api/stream.html#stream_decoding_buffers_in_a_writable_stream |
| 10 | function isBuffer(_chunk: string | Buffer, encoding: string): _chunk is Buffer { |
| 11 | return encoding === "buffer"; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * WritableStream makes the `Parser` interface available as a NodeJS stream. |
no outgoing calls
no test coverage detected
searching dependent graphs…