(urlStr)
| 6778 | var parse_url = Url.parse; |
| 6779 | var format_url = Url.format; |
| 6780 | function parseURL(urlStr) { |
| 6781 | if (/^[a-zA-Z][a-zA-Z\d+\-.]*:/.exec(urlStr)) { |
| 6782 | urlStr = new URL3(urlStr).toString(); |
| 6783 | } |
| 6784 | return parse_url(urlStr); |
| 6785 | } |
| 6786 | var streamDestructionSupported = "destroy" in Stream3.Readable.prototype; |
| 6787 | function isRequest2(input) { |
| 6788 | return typeof input === "object" && typeof input[INTERNALS$2] === "object"; |
no test coverage detected
searching dependent graphs…