(req)
| 62 | } |
| 63 | |
| 64 | export function isServerInfoRequest(req) { |
| 65 | const pathname = new URL(req.url ?? "/", "http://localhost").pathname; |
| 66 | return pathname === SERVER_INFO_PATH; |
| 67 | } |
| 68 | |
| 69 | export function proxyServerInfoRequest( |
| 70 | req, |
no outgoing calls
no test coverage detected