Convert a stream of bytes (in chunks) into a sequence of path/value pairs
Optional
options: {Optional
isMaxDepthReached?: (arg0: Path) => booleanMax parsing depth
Optional
maxDepth?: numberMax parsing depth
Optional
startingPath?: JSONPathTypeThe parser will consider this path as it is initial (useful to resume)
Check if the current path is at max depth
Check if the JSON parsing completed correctly
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
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