| 16 | namespace |
| 17 | { |
| 18 | std::string GetString(const rapidjson::Value& obj, const char* key) |
| 19 | { |
| 20 | if (obj.HasMember(key) && obj[key].IsString()) |
| 21 | return obj[key].GetString(); |
| 22 | return {}; |
| 23 | } |
| 24 | |
| 25 | std::string GetFileSuffix(const std::string& filename) |
| 26 | { |
no test coverage detected