MCPcopy Create free account
hub / github.com/Zoo-Code-Org/Zoo-Code / isRecord

Function isRecord

apps/cli/src/lib/utils/guards.ts:1–3  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

1export function isRecord(value: unknown): value is Record<string, unknown> {
2 return typeof value === "object" && value !== null
3}

Calls

no outgoing calls