(characters)
| 1562 | } |
| 1563 | var headerCharRegex = /[^\t\x20-\x7e\x80-\xff]/; |
| 1564 | function isValidHeaderValue(characters) { |
| 1565 | return !headerCharRegex.test(characters); |
| 1566 | } |
| 1567 | function parseRangeHeader(range) { |
| 1568 | if (range == null || range === "") |
| 1569 | return { start: 0, end: null, size: null }; |
no outgoing calls
no test coverage detected