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

Function isRecord

src/utils/plugins/pluginLoader.ts:3300–3302  ·  view source on GitHub ↗

* Type predicate: check if a value is a non-null, non-array object (i.e., a record).

(value: unknown)

Source from the content-addressed store, hash-verified

3298 * Type predicate: check if a value is a non-null, non-array object (i.e., a record).
3299 */
3300function isRecord(value: unknown): value is Record<string, unknown> {
3301 return typeof value === 'object' && value !== null && !Array.isArray(value)
3302}

Callers 1

loadPluginSettingsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected