| 49 | |
| 50 | // Check whether there might still be some `message` events to receive |
| 51 | export const isConnected = anyProcess => { |
| 52 | const ipcEmitter = IPC_EMITTERS.get(anyProcess); |
| 53 | return ipcEmitter === undefined |
| 54 | ? anyProcess.channel !== null |
| 55 | : ipcEmitter.connected; |
| 56 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…