(entry: object, fallback: string)
| 52 | } |
| 53 | |
| 54 | function getEntryParentPath(entry: object, fallback: string): string { |
| 55 | if (hasParentPath(entry)) { |
| 56 | return entry.parentPath |
| 57 | } |
| 58 | if (hasPath(entry)) { |
| 59 | return entry.path |
| 60 | } |
| 61 | return fallback |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Find files that have been modified since the turn started. |
no test coverage detected