jsonStringify<T>(items: AsyncIterable<T>): AsyncIterable<string>
Convert objects to JSON-encoded strings (one per line).
Useful for serializing structured data to pass between processes or save to files in JSONL (JSON Lines) format.
items: AsyncIterable<T>
The objects to convert.