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