(value: string)
| 200 | } |
| 201 | |
| 202 | function isValidHeaderValue(value: string): boolean { |
| 203 | return value.length > 0 && HEADER_VALUE_RE.test(value); |
| 204 | } |
| 205 | |
| 206 | function hasValidHeaderArgs(args: string | string[] | undefined): boolean { |
| 207 | if (typeof args === 'string') { |
no test coverage detected