| 327 | } |
| 328 | |
| 329 | TStringBuf GetZone(const TStringBuf host Y_LIFETIME_BOUND) noexcept { |
| 330 | return GetParentDomain(host, 1); |
| 331 | } |
| 332 | |
| 333 | TStringBuf CutWWWPrefix(const TStringBuf url Y_LIFETIME_BOUND) noexcept { |
| 334 | if (url.size() >= 4 && url[3] == '.' && !strnicmp(url.data(), "www", 3)) |
no test coverage detected