(value)
| 47 | sanitizeValue(value, INVALID_UNICODE_HEADER_VALUE_CHARS); |
| 48 | |
| 49 | export const sanitizeByteStringHeaderValue = (value) => |
| 50 | sanitizeValue(value, INVALID_BYTE_STRING_HEADER_VALUE_CHARS); |
| 51 | |
| 52 | export function toByteStringHeaderObject(headers) { |
| 53 | const byteStringHeaders = Object.create(null); |
no test coverage detected