(cwd: string)
| 266 | } |
| 267 | |
| 268 | export const dirIsInGitRepo = async (cwd: string): Promise<boolean> => { |
| 269 | return findGitRoot(cwd) !== null |
| 270 | } |
| 271 | |
| 272 | export const getHead = async (): Promise<string> => { |
| 273 | return getCachedHead() |
no outgoing calls
no test coverage detected