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

Function stringEnd

parser.go:296–298  ·  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

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

Calls 1

stringEndConfigFunction · 0.85