(existing: string, chunk: Buffer)
| 109 | } |
| 110 | |
| 111 | const appendChunk = (existing: string, chunk: Buffer): string => |
| 112 | `${existing}${chunk.toString("utf8")}`.slice(-16_000); |
| 113 | |
| 114 | const windowsPredecessorCommand = (exe: string): string => |
| 115 | `& '${exe}' daemon run --foreground --port ${PORT} --hostname 127.0.0.1`; |
no test coverage detected