(input)
| 3893 | return false; |
| 3894 | } |
| 3895 | function parseOpaqueHost(input) { |
| 3896 | if (containsForbiddenHostCodePoint(input)) { |
| 3897 | return failure; |
| 3898 | } |
| 3899 | return utf8PercentEncodeString(input, isC0ControlPercentEncode); |
| 3900 | } |
| 3901 | function findTheIPv6AddressCompressedPieceIndex(address) { |
| 3902 | let longestIndex = null; |
| 3903 | let longestSize = 1; |
no test coverage detected
searching dependent graphs…