(request)
| 4275 | } |
| 4276 | return true; |
| 4277 | } |
| 4278 | function normalizeBinaryStringToUtf8(value) { |
| 4279 | return Buffer.from(value, "binary").toString("utf8"); |
| 4280 | } |
| 4281 | function requestCurrentURL(request) { |
| 4282 | return request.urlList[request.urlList.length - 1]; |
| 4283 | } |
| 4284 | function requestBadPort(request) { |
| 4285 | const url = requestCurrentURL(request); |
| 4286 | if (urlIsHttpHttpsScheme(url) && badPortsSet.has(url.port)) { |
no test coverage detected