()
| 38 | }; |
| 39 | |
| 40 | export function detectFdPath(): string | null { |
| 41 | const managed = getManagedFdPath(); |
| 42 | if (managed !== null) return managed; |
| 43 | return detectSystemFdPath(); |
| 44 | } |
| 45 | |
| 46 | export async function ensureFdPath(): Promise<string | null> { |
| 47 | const existing = detectFdPath(); |
no test coverage detected