(scopeRoot: string)
| 64 | } |
| 65 | |
| 66 | function hashScopeRoot(scopeRoot: string): string { |
| 67 | return crypto.createHash('sha256').update(scopeRoot).digest('hex').slice(0, 16); |
| 68 | } |
| 69 | |
| 70 | function resolveCallerScopeRoot(rawCwd: string | undefined): string | undefined { |
| 71 | if (!rawCwd || rawCwd.trim().length === 0) return undefined; |
no test coverage detected
searching dependent graphs…