(left, right)
| 481 | } |
| 482 | |
| 483 | function sameRealPath(left, right) { |
| 484 | try { |
| 485 | return fs.realpathSync(left) === fs.realpathSync(right); |
| 486 | } catch (_) { |
| 487 | return false; |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | function commandUsesCurrentRepoRelativeIndex(cmd, cwd) { |
| 492 | if (!cwd) return false; |
no outgoing calls
no test coverage detected