()
| 125 | } |
| 126 | |
| 127 | function connectionHeaderMessageWarn() { |
| 128 | if (statusConnectionHeaderWarned === false) { |
| 129 | process.emitWarning( |
| 130 | 'The provided connection header is not valid, ' + |
| 131 | 'the value will be dropped from the header and ' + |
| 132 | 'will never be in use.', |
| 133 | 'UnsupportedWarning', |
| 134 | ); |
| 135 | statusConnectionHeaderWarned = true; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | function onStreamData(chunk) { |
| 140 | const request = this[kRequest]; |
no outgoing calls
no test coverage detected
searching dependent graphs…