(pathValue?: string | null)
| 12 | }; |
| 13 | |
| 14 | function getNonEmptyPath(pathValue?: string | null): string | undefined { |
| 15 | return pathValue && pathValue.trim().length > 0 ? pathValue : undefined; |
| 16 | } |
| 17 | |
| 18 | function resolveWorkspaceDerivedDataRoot(cwd: string): string { |
| 19 | const workspaceKey = getRuntimeInstanceIfConfigured()?.workspaceKey ?? workspaceKeyForRoot(cwd); |
no outgoing calls
no test coverage detected