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