()
| 40 | const isFdInstalled = Boolean(fdPath); |
| 41 | |
| 42 | const requireFdPath = (): string => { |
| 43 | if (!fdPath) { |
| 44 | throw new Error("fd is not available"); |
| 45 | } |
| 46 | return fdPath; |
| 47 | }; |
| 48 | |
| 49 | const getSuggestions = ( |
| 50 | provider: CombinedAutocompleteProvider, |