| 98 | } |
| 99 | |
| 100 | TString MakeNormalized(const TStringBuf url) { |
| 101 | TStringBuf urlCut = CutHttpWwwPrefixes(url); |
| 102 | if (HasLowerHost(urlCut)) { |
| 103 | return ToString(urlCut); |
| 104 | } |
| 105 | return MakeLowerHost(urlCut); |
| 106 | } |
| 107 | |
| 108 | } // namespace NUrl |
| 109 |
nothing calls this directly
no test coverage detected