(url)
| 5796 | } |
| 5797 | __name(urlHasHttpsScheme, "urlHasHttpsScheme"); |
| 5798 | function urlIsHttpHttpsScheme(url) { |
| 5799 | assert("protocol" in url); |
| 5800 | const protocol = url.protocol; |
| 5801 | return protocol === "http:" || protocol === "https:"; |
| 5802 | } |
| 5803 | __name(urlIsHttpHttpsScheme, "urlIsHttpHttpsScheme"); |
| 5804 | function simpleRangeHeaderValue(value, allowWhitespace) { |
| 5805 | const data = value; |
no test coverage detected