We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa01831 commit 5ca7181Copy full SHA for 5ca7181
src/utils/jsonl-stream.ts
@@ -30,7 +30,7 @@ export class JsonlStream extends Writable {
30
buffer = buffer.substring(newlineIndex + 1);
31
32
const json = safeJsonParse(line);
33
- if (json !== null) {
+ if (json !== undefined) {
34
this.emit("json", json);
35
}
36
0 commit comments