| 105 | // Otherwise, it is likely that one of the processes will stop sending/receiving messages. |
| 106 | // This would leave the other process hanging. |
| 107 | export const disconnect = anyProcess => { |
| 108 | if (anyProcess.connected) { |
| 109 | anyProcess.disconnect(); |
| 110 | } |
| 111 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…