| 12664 | } |
| 12665 | |
| 12666 | [[nodiscard]] std::string url::get_port() const noexcept { |
| 12667 | return port.has_value() ? std::to_string(port.value()) : ""; |
| 12668 | } |
| 12669 | |
| 12670 | [[nodiscard]] std::string url::get_hash() const noexcept { |
| 12671 | // If this's URL's fragment is either null or the empty string, then return |
no test coverage detected