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