MCPcopy Index your code
hub / github.com/codeaashu/claude-code / 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}
3303

Callers 1

loadPluginSettingsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected