(id: string)
| 52 | * not found" back. Same UUID, wrong tag. No-op for IDs that aren't `session_*`. |
| 53 | */ |
| 54 | export function toInfraSessionId(id: string): string { |
| 55 | if (!id.startsWith('session_')) return id |
| 56 | return 'cse_' + id.slice('session_'.length) |
| 57 | } |
| 58 | |
| 59 |
no outgoing calls
no test coverage detected