(value: unknown)
| 208 | } |
| 209 | |
| 210 | export function isRecord(value: unknown): value is Record<string, unknown> { |
| 211 | return typeof value === "object" && value !== null; |
| 212 | } |
| 213 | |
| 214 | function zenCandidates(): string[] { |
| 215 | // #126: the CLI is `zn` now (renamed from `zen`, which clashes with Zen |
no outgoing calls
no test coverage detected