* Builds the cache key for a lookup rooted at `cwd` and a PATH value.
(cwd: string, pathValue: string)
| 794 | * Builds the cache key for a lookup rooted at `cwd` and a PATH value. |
| 795 | */ |
| 796 | function getCliInvocationCacheKey(cwd: string, pathValue: string): string { |
| 797 | return `${cwd}\0${pathValue}`; |
| 798 | } |
no outgoing calls
no test coverage detected