()
| 1220 | } |
| 1221 | |
| 1222 | function getServerCapacity() { |
| 1223 | let activeDevicesCount = Object.keys(serverState?.devices?.active || {}).length |
| 1224 | if (typeof window === "object" && window.document.visibilityState === "hidden") { |
| 1225 | activeDevicesCount = 1 + activeDevicesCount |
| 1226 | } |
| 1227 | return activeDevicesCount |
| 1228 | } |
| 1229 | |
| 1230 | let idleEventPromise = undefined |
| 1231 | function continueTasks() { |
no outgoing calls
no test coverage detected