(msg)
| 920 | } |
| 921 | |
| 922 | function strictContentLength(msg) { |
| 923 | return ( |
| 924 | msg.strictContentLength && |
| 925 | msg._contentLength != null && |
| 926 | msg._hasBody && |
| 927 | !msg._removedContLen && |
| 928 | !msg.chunkedEncoding && |
| 929 | !msg.hasHeader('transfer-encoding') |
| 930 | ); |
| 931 | } |
| 932 | |
| 933 | function write_(msg, chunk, encoding, callback, fromEnd) { |
| 934 | if (typeof callback !== 'function') |
no test coverage detected
searching dependent graphs…