(object)
| 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)) { |
| 4287 | return "blocked"; |
| 4288 | } |
| 4289 | return "allowed"; |
| 4290 | } |
no outgoing calls
no test coverage detected