(socket, state, delta)
| 860 | } |
| 861 | |
| 862 | function updateOutgoingData(socket, state, delta) { |
| 863 | state.outgoingData += delta; |
| 864 | socketOnDrain(socket, state); |
| 865 | } |
| 866 | |
| 867 | function socketOnDrain(socket, state) { |
| 868 | const needPause = state.outgoingData > socket.writableHighWaterMark; |
nothing calls this directly
no test coverage detected
searching dependent graphs…