(value: unknown)
| 19 | const SKIP_DIRS = new Set([".git", "node_modules", "dist", "build", ".next"]) |
| 20 | |
| 21 | function asRecord(value: unknown): Record<string, unknown> { |
| 22 | return typeof value === "object" && value !== null ? (value as Record<string, unknown>) : {} |
| 23 | } |
| 24 | |
| 25 | function stringValue(record: Record<string, unknown>, key: string): string { |
| 26 | const value = record[key] |
no outgoing calls
no test coverage detected