| 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; |
| 36 | } |
| 37 | }; |
| 38 | |
| 39 | int command = 0; |
no test coverage detected