Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

jsonStringifyStream

import { jsonStringifyStream } from "https://raw.githubusercontent.com/worker-tools/json-stream/master/index.ts";
deprecated
@deprecated

Change name to something more descriptive!?

function jsonStringifyStream(value:
| null
| Primitive
| any[]
| Record<string, any>
| PromiseLike<any>
| AsyncIterable<any>
| ReadableStream
): ReadableStream<string>;
§
jsonStringifyStream(value: null | Primitive | ToJSON | any[] | Record<string, any> | PromiseLike<any> | AsyncIterable<any> | ReadableStream): ReadableStream<string>
[src]

§Parameters

§
value: null | Primitive | ToJSON | any[] | Record<string, any> | PromiseLike<any> | AsyncIterable<any> | ReadableStream
[src]

§Return Type

§
ReadableStream<string>
[src]