| 30 | std::map<String, String> values; |
| 31 | |
| 32 | bool has(const char *key) const { return values.find(String(key)) != values.end(); } |
| 33 | String get(const char *key) const { |
| 34 | auto it = values.find(String(key)); |
| 35 | return it == values.end() ? String("") : it->second; |
no test coverage detected