(hostname)
| 112 | } |
| 113 | |
| 114 | function normalizeHostname(hostname) { |
| 115 | return String(hostname || "") |
| 116 | .trim() |
| 117 | .replace(/\.$/, "") |
| 118 | .toLowerCase(); |
| 119 | } |
| 120 | |
| 121 | function normalizeIpAddress(address) { |
| 122 | return String(address || "") |
no outgoing calls
no test coverage detected