(urlString)
| 11 | } |
| 12 | |
| 13 | function parseURL(urlString) { |
| 14 | try { |
| 15 | return new URL(urlString); |
| 16 | } catch { |
| 17 | return undefined; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | function makeBatchRoutingPathFunction(originalUrl, serverURL, publicServerURL) { |
| 22 | serverURL = serverURL ? parseURL(serverURL) : undefined; |
no outgoing calls
no test coverage detected