(pathname: string)
| 249 | const SESSION_PREFIX = "agentation-session-"; |
| 250 | |
| 251 | export function getSessionStorageKey(pathname: string): string { |
| 252 | return `${SESSION_PREFIX}${pathname}`; |
| 253 | } |
| 254 | |
| 255 | export function loadSessionId(pathname: string): string | null { |
| 256 | if (typeof window === "undefined") return null; |
no outgoing calls
no test coverage detected
searching dependent graphs…