| 89 | } |
| 90 | |
| 91 | std::string quote_json(const std::string & value) { |
| 92 | return engine::io::json::stringify_string(value); |
| 93 | } |
| 94 | |
| 95 | std::string lower_ascii(std::string value) { |
| 96 | std::transform(value.begin(), value.end(), value.begin(), [](unsigned char ch) { |
no test coverage detected