MCPcopy Create free account
hub / github.com/buger/jsonparser / stringEnd

Function stringEnd

parser.go:295–297  ·  view source on GitHub ↗

SYS-REQ-045 Tries to find the end of string Support if string contains escaped quote symbols.

(data []byte)

Source from the content-addressed store, hash-verified

293// Tries to find the end of string
294// Support if string contains escaped quote symbols.
295func stringEnd(data []byte) (int, bool) {
296 return stringEndConfig(DefaultConfig, data, '"')
297}
298
299// SYS-REQ-115
300func stringEndConfig(_ Config, data []byte, quote byte) (int, bool) {

Calls 1

stringEndConfigFunction · 0.85