()
| 81 | let exitSettleTimer: NodeJS.Timeout | null = null; |
| 82 | |
| 83 | const clearExitSettleTimer = (): void => { |
| 84 | if (exitSettleTimer) { |
| 85 | clearTimeout(exitSettleTimer); |
| 86 | exitSettleTimer = null; |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | const detachStreamListeners = (): void => { |
| 91 | for (const detachStream of streamDetachers) { |
no outgoing calls
no test coverage detected