MCPcopy Create free account
hub / github.com/getagentseal/codeburn / isJsonWhitespaceByte

Function isJsonWhitespaceByte

src/parser.ts:479–481  ·  view source on GitHub ↗
(ch: number | undefined)

Source from the content-addressed store, hash-verified

477}
478
479function isJsonWhitespaceByte(ch: number | undefined): boolean {
480 return ch === 0x20 || ch === 0x0a || ch === 0x0d || ch === 0x09
481}
482
483function findJsonStringEndBuffer(source: Buffer, start: number, limit = source.length): number {
484 for (let i = start + 1; i < limit; i++) {

Callers 6

parseLargeJsonlBufferFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected