MCPcopy Create free account
hub / github.com/boringstack-xyz/boringstack / isRecord

Function isRecord

apps/ui/src/lib/guards/isRecord.ts:6–8  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

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

Callers 6

maskFunction · 0.90
emitFunction · 0.90
isRecord.test.tsFile · 0.90
isMfaRequiredEnvelopeFunction · 0.90
isLoginUserEnvelopeFunction · 0.90
redirectTargetFromStateFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected