(sessionPath: string | null | undefined)
| 6 | } |
| 7 | |
| 8 | export function isLocalSessionPath(sessionPath: string | null | undefined) { |
| 9 | return typeof sessionPath === 'string' && sessionPath.startsWith(LOCAL_SESSION_PREFIX) |
| 10 | } |
| 11 | |
| 12 | export function getPersistedSessionPath(sessionPath: string | null | undefined) { |
| 13 | return typeof sessionPath === 'string' && |
no outgoing calls
no test coverage detected