MCPcopy
hub / github.com/continuedev/continue / read

Function read

packages/fetch/src/stream.test.ts:8–13  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6 // Create a Readable stream that emits the SSE lines
7 const stream = new Readable({
8 read() {
9 for (const line of sseLines) {
10 this.push(line + "\n\n");
11 }
12 this.push(null); // End of stream
13 },
14 }) as any;
15
16 // Minimal Response mock

Callers

nothing calls this directly

Calls 1

pushMethod · 0.65

Tested by

no test coverage detected