(controller)
| 64 | '{"kind":"reasoning","delta":"a"}\n{"kind":"content","delta":"html"}\n'; |
| 65 | const body = new ReadableStream({ |
| 66 | start(controller) { |
| 67 | controller.enqueue(new TextEncoder().encode(payload.slice(0, 24))); |
| 68 | controller.enqueue(new TextEncoder().encode(payload.slice(24))); |
| 69 | controller.close(); |
| 70 | }, |
| 71 | }); |
| 72 | |
| 73 | const parts: string[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected