( paths: VaultTextSearchToolPaths | null | undefined )
| 1668 | } |
| 1669 | |
| 1670 | function normalizeVaultTextSearchToolPaths( |
| 1671 | paths: VaultTextSearchToolPaths | null | undefined |
| 1672 | ): Required<VaultTextSearchToolPaths> { |
| 1673 | return { |
| 1674 | ripgrepPath: normalizeToolPath(paths?.ripgrepPath), |
| 1675 | fzfPath: normalizeToolPath(paths?.fzfPath) |
| 1676 | } |
| 1677 | } |
| 1678 | |
| 1679 | function capabilityCacheKey(paths: Required<VaultTextSearchToolPaths>): string { |
| 1680 | return JSON.stringify(paths) |
no test coverage detected