MCPcopy Index your code
hub / github.com/coder/mux / isRecord

Function isRecord

src/node/services/devToolsService.ts:23–25  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

21}
22
23function isRecord(value: unknown): value is Record<string, unknown> {
24 return typeof value === "object" && value !== null;
25}
26
27function isUnknownArray(value: unknown): value is unknown[] {
28 return Array.isArray(value);

Callers 3

extractTextFunction · 0.70
loadFromDiskMethod · 0.70
buildRunSummaryMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected