(filePath: string)
| 876 | } |
| 877 | |
| 878 | function maybeExpandFilePath(filePath: string): string { |
| 879 | if (isAbsolute(filePath)) { |
| 880 | return filePath |
| 881 | } |
| 882 | return join(getOriginalCwd(), filePath) |
| 883 | } |
| 884 | |
| 885 | /** |
| 886 | * Restores file history snapshot state for a given log option. |
no test coverage detected