(roomId: string)
| 30 | }; |
| 31 | |
| 32 | const getStorageKey = (roomId: string): string => |
| 33 | `${storageKeyPrefix}${roomId}`; |
| 34 | |
| 35 | const clearStoredSessionByKey = (roomId: string): void => { |
| 36 | readStorage().removeItem(getStorageKey(roomId)); |
no outgoing calls
no test coverage detected