| 152 | } |
| 153 | |
| 154 | std::string |
| 155 | json_entry_array(std::string_view name, std::string_view value) |
| 156 | { |
| 157 | return std::string{"[\""} + escape_json(name) + "\",\"" + escape_json(value) + "\"]"; |
| 158 | } |
| 159 | |
| 160 | std::string |
| 161 | escape_json(std::string_view s) |
no test coverage detected