MCPcopy Create free account
hub / github.com/OperationT00/T-Code / isRecord

Function isRecord

clients/t-code-cli/src/runtime-client.ts:134–136  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

132}
133
134function isRecord(value: unknown): value is Record<string, unknown> {
135 return typeof value === "object" && value !== null;
136}
137
138function requiredString(body: Record<string, unknown>, key: string): string {
139 const value = body[key];

Callers 1

runtimeApiErrorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected