(destination: Destination)
| 43 | export function completeWriting(destination: Destination) {} |
| 44 | |
| 45 | export function close(destination: Destination) { |
| 46 | destination.done = true; |
| 47 | } |
| 48 | |
| 49 | export function stringToChunk(content: string): Chunk { |
| 50 | return content; |
no outgoing calls
no test coverage detected