(config)
| 715 | } |
| 716 | |
| 717 | function redactConfig(config) { |
| 718 | return { ...config, hostToken: config.hostToken ? "[redacted]" : "" }; |
| 719 | } |
| 720 | |
| 721 | function isWebSocketUpgradeRequest(request) { |
| 722 | const headers = new Headers(request.headers || {}); |
no outgoing calls
no test coverage detected