MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / isPlainObject

Function isPlainObject

src/utils/project-config.ts:85–87  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

83}
84
85function isPlainObject(value: unknown): value is Record<string, unknown> {
86 return typeof value === 'object' && value !== null && !Array.isArray(value);
87}
88
89function toError(value: unknown): Error {
90 return value instanceof Error ? value : new Error(String(value));

Callers 2

normalizeCustomWorkflowsFunction · 0.85
parseProjectConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected