(protocol: string)
| 54 | } |
| 55 | |
| 56 | function defaultPortForProtocol(protocol: string): number | undefined { |
| 57 | if (protocol === 'https:') return 443; |
| 58 | if (protocol === 'http:') return 80; |
| 59 | return undefined; |
| 60 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…