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