(name: string)
| 1 | import { resolveUserPath } from '../utils/path-resolution.ts'; |
| 2 | |
| 3 | export function safeSessionName(name: string): string { |
| 4 | return name.replace(/[^a-zA-Z0-9._-]/g, '_'); |
| 5 | } |
| 6 | |
| 7 | export function expandSessionPath(filePath: string, cwd?: string): string { |
| 8 | return resolveUserPath(filePath, { cwd }); |
no outgoing calls
no test coverage detected
searching dependent graphs…