| 33 | } |
| 34 | |
| 35 | static std::string_view trim(std::string_view sv) { |
| 36 | return trim_trailing_space(trim_leading_space(sv, 1)); |
| 37 | } |
| 38 | |
| 39 | // Count the number of unclosed '{' braces in a JSON-like string, |
| 40 | // properly skipping braces inside quoted strings. |
no test coverage detected