| 329 | } |
| 330 | |
| 331 | bool IsEmptyPath(std::string_view v) { |
| 332 | for (const auto c : v) { |
| 333 | if (c != '/') { |
| 334 | return false; |
| 335 | } |
| 336 | } |
| 337 | return true; |
| 338 | } |
| 339 | |
| 340 | bool IsLikelyUri(std::string_view v) { |
| 341 | if (v.empty() || v[0] == '/') { |
no outgoing calls
no test coverage detected