(stream)
| 259 | } |
| 260 | |
| 261 | function isOutgoingMessage(stream) { |
| 262 | return ( |
| 263 | typeof stream._closed === 'boolean' && |
| 264 | typeof stream._defaultKeepAlive === 'boolean' && |
| 265 | typeof stream._removedConnection === 'boolean' && |
| 266 | typeof stream._removedContLen === 'boolean' |
| 267 | ); |
| 268 | } |
| 269 | |
| 270 | function isServerResponse(stream) { |
| 271 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…