(value: unknown)
| 4 | * arbitrary `unknown`) before further narrowing. |
| 5 | */ |
| 6 | export function isRecord(value: unknown): value is Record<string, unknown> { |
| 7 | return typeof value === "object" && value !== null; |
| 8 | } |
no outgoing calls
no test coverage detected