( maybeRelativePath: string, absoluteProjectRoots: Array<string>, )
| 134 | } |
| 135 | |
| 136 | export function doesFilePathExist( |
| 137 | maybeRelativePath: string, |
| 138 | absoluteProjectRoots: Array<string>, |
| 139 | ): boolean { |
| 140 | return getValidFilePath(maybeRelativePath, absoluteProjectRoots) !== null; |
| 141 | } |
| 142 | |
| 143 | export function launchEditor( |
| 144 | maybeRelativePath: string, |
no test coverage detected