(value: unknown)
| 572 | } |
| 573 | |
| 574 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 575 | return typeof value === "object" && value !== null; |
| 576 | } |
| 577 | |
| 578 | /** |
| 579 | * Pick the dispatcher first name for the kickoff bot username. Order: |
no outgoing calls
no test coverage detected