* @brief Return text for an HTTP method */
| 120 | * @brief Return text for an HTTP method |
| 121 | */ |
| 122 | inline String toString(HttpMethod method) |
| 123 | { |
| 124 | auto fstr = reinterpret_cast<flash_string_t>(http_method_str(http_method(method))); |
| 125 | return String(fstr); |
| 126 | } |
| 127 | |
| 128 | /** @} */ |
no test coverage detected