* @param {string} characters * @returns {boolean}
(characters)
| 772 | * @returns {boolean} |
| 773 | */ |
| 774 | function isValidHeaderValue (characters) { |
| 775 | return !headerCharRegex.test(characters) |
| 776 | } |
| 777 | |
| 778 | const rangeHeaderRegex = /^bytes (\d+)-(\d+)\/(\d+|\*)?$/ |
| 779 |
no outgoing calls
no test coverage detected
searching dependent graphs…