(value)
| 489 | distinct: boolean |
| 490 | } |
| 491 | function isLocalCommit(value): value is LocalCommit { |
| 492 | return typeof value.id == 'string' |
| 493 | } |
| 494 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 495 | function isLocalCommitArray(value: any[]): value is LocalCommit[] { |
| 496 | return isLocalCommit(value[0]) |
no outgoing calls
no test coverage detected