MCPcopy Create free account
hub / github.com/MatterAIOrg/OrbCode / isPlainObject

Function isPlainObject

src/commands/migrate.ts:114–116  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

112}
113
114function isPlainObject(value: unknown): value is Record<string, unknown> {
115 return typeof value === "object" && value !== null && !Array.isArray(value);
116}
117
118/**
119 * Normalize a single MCP server config from an external source. We do not run

Callers 5

normalizeExternalServerFunction · 0.70
readMcpServersFunction · 0.70
readMcpServersFromObjectFunction · 0.70
applyMigrationFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected