(url: string)
| 117 | }) |
| 118 | |
| 119 | function isLocalNetwork(url: string): boolean { |
| 120 | const { hostname } = new URL(url) |
| 121 | const localNetworkRegex = |
| 122 | /^(127\.|10\.|172\.1[6-9]\.|172\.2[0-9]\.|172\.3[0-1]\.|192\.168\.)/ |
| 123 | return localNetworkRegex.test(hostname) || hostname === 'localhost' |
| 124 | } |