Convert a stream of bytes (in chunks) into a sequence of path/value pairs
Optional
options:
{
includes?:
string;
maxDepth?:
number;
startingPath?:
JSONPathType
} = {}
Optional
includes?: string
Expression using the includes syntax
Optional
maxDepth?: number
Max parsing depth
Optional
startingPath?: JSONPathType
The parser will consider this path as it is initial (useful to resume)
Parse a json or json fragment from a buffer, split in chunks (ArrayBuffers) and yields a sequence of path/value pairs It also yields the starting and ending byte of each value
an arraybuffer that is a chunk of a stream
Convert a stream of characters (in chunks) to a sequence of path/value pairs