(p: string)
| 29 | // Convert a path to a stable string-comparable form: forward-slash separated, |
| 30 | // and on Windows, lowercased (Windows filesystems are case-insensitive). |
| 31 | function toComparable(p: string): string { |
| 32 | const posixForm = toPosix(p) |
| 33 | return IS_WINDOWS ? posixForm.toLowerCase() : posixForm |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Detects if a file path is a session-related file under ~/.claude. |
no test coverage detected