MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / isRecord

Function isRecord

packages/core/execution/src/engine.ts:212–213  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

210// ---------------------------------------------------------------------------
211
212const isRecord = (value: unknown): value is Record<string, unknown> =>
213 typeof value === "object" && value !== null && !Array.isArray(value);
214
215const readOptionalLimit = (value: unknown, toolName: string): number | ExecutionToolError => {
216 if (value === undefined) {

Callers 1

makeFullInvokerFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected