(name, value, lenient)
| 357 | }; |
| 358 | |
| 359 | function processInformationHeader(name, value, lenient) { |
| 360 | validateHeaderName(name); |
| 361 | validateHeaderValue(name, value, lenient); |
| 362 | return `${name}: ${value}\r\n`; |
| 363 | } |
| 364 | |
| 365 | ServerResponse.prototype.writeContinue = function writeContinue(cb) { |
| 366 | this.writeInformation(100, null, cb); |
no outgoing calls
no test coverage detected
searching dependent graphs…