(entry: object, fallback: string)
| 41 | } |
| 42 | |
| 43 | function getEntryParentPath(entry: object, fallback: string): string { |
| 44 | if (hasParentPath(entry)) { |
| 45 | return entry.parentPath |
| 46 | } |
| 47 | if (hasPath(entry)) { |
| 48 | return entry.path |
| 49 | } |
| 50 | return fallback |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Find files that have been modified since the turn started. |
no test coverage detected