We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c633bb commit 210cbebCopy full SHA for 210cbeb
packages/datafile-manager/src/nodeRequest.ts
@@ -47,8 +47,8 @@ function createHeadersFromNodeIncomingMessage(incomingMessage: http.IncomingMess
47
const headerValue = incomingMessage.headers[headerName];
48
if (typeof headerValue === 'string') {
49
headers[headerName] = headerValue;
50
- // eslint-disable-next-line no-empty
51
} else if (typeof headerValue === 'undefined') {
+ // no value provided for this header
52
} else {
53
// array
54
if (headerValue.length > 0) {
0 commit comments