MCPcopy Create free account
hub / github.com/codeaashu/claude-code / isRecord

Function isRecord

src/utils/plugins/lspRecommendation.ts:108–110  ·  view source on GitHub ↗

* Type guard to check if a value is a record object

(value: unknown)

Source from the content-addressed store, hash-verified

106 * Type guard to check if a value is a record object
107 */
108function isRecord(value: unknown): value is Record<string, unknown> {
109 return typeof value === 'object' && value !== null
110}
111
112function extractFromServerConfigRecord(
113 serverConfigs: Record<string, unknown>,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected