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

jsonStringifyGenerator

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

Change name to something more descriptive!?

async function* jsonStringifyGenerator(value:
| null
| Primitive
| any[]
| Record<string, any>
| PromiseLike<any>
| AsyncIterable<any>
| ReadableStream
, seen?: SeenWeakSet): AsyncIterableIterator<string>;
§
jsonStringifyGenerator(value: null | Primitive | ToJSON | any[] | Record<string, any> | PromiseLike<any> | AsyncIterable<any> | ReadableStream, seen?: SeenWeakSet): AsyncIterableIterator<string>
[src]

§Parameters

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

§Return Type

§
AsyncIterableIterator<string>
[src]