MCPcopy Create free account
hub / github.com/CopilotKit/aimock / isObject

Function isObject

src/jsonrpc.ts:29–31  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

27}
28
29function isObject(val: unknown): val is Record<string, unknown> {
30 return typeof val === "object" && val !== null && !Array.isArray(val);
31}
32
33async function processOne(
34 entry: unknown,

Callers 1

processOneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…