(v: unknown, fallback: Map<string, V>)
| 262 | const { __sessionKey: _sessionKey, ...hydrated } = hydratedWithMeta; |
| 263 | const fresh = createSession(); |
| 264 | const asMap = <V>(v: unknown, fallback: Map<string, V>): Map<string, V> => |
| 265 | v instanceof Map ? (v as Map<string, V>) : fallback; |
| 266 | const hydratedComply = (hydrated.complyExtensions ?? {}) as Partial<SessionState['complyExtensions']>; |
| 267 | return { |
| 268 | ...fresh, |
no outgoing calls
no test coverage detected