( destination: Destination, chunk: Chunk | PrecomputedChunk | BinaryChunk, )
| 33 | } |
| 34 | |
| 35 | export function writeChunkAndReturn( |
| 36 | destination: Destination, |
| 37 | chunk: Chunk | PrecomputedChunk | BinaryChunk, |
| 38 | ): boolean { |
| 39 | destination.buffer += chunk; |
| 40 | return true; |
| 41 | } |
| 42 | |
| 43 | export function completeWriting(destination: Destination) {} |
| 44 |
no outgoing calls
no test coverage detected