()
| 9 | import {promisify} from 'node:util'; |
| 10 | |
| 11 | export default async function isWatchmanInstalled(): Promise<boolean> { |
| 12 | try { |
| 13 | await promisify(execFile)('watchman', ['--version']); |
| 14 | return true; |
| 15 | } catch { |
| 16 | return false; |
| 17 | } |
| 18 | } |
no outgoing calls
no test coverage detected