@brief Obtain content type string from file extension * @param extension * @retval String */
| 88 | * @retval String |
| 89 | */ |
| 90 | inline String fromFileExtension(const String& extension) |
| 91 | { |
| 92 | return fromFileExtension(extension.c_str()); |
| 93 | } |
| 94 | |
| 95 | /** @brief Get enumerated value for a MIME type string |
| 96 | * @param str |
no test coverage detected