MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / isRecord

Function isRecord

packages/migration-legacy/src/steps/config.ts:93–95  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

91}
92
93function isRecord(value: unknown): value is Record<string, unknown> {
94 return typeof value === 'object' && value !== null && !Array.isArray(value);
95}
96
97function emptyResult(): ConfigStepResult {
98 return {

Callers 5

providerIsSupportedFunction · 0.70
modelIsSupportedFunction · 0.70
stableKeyFunction · 0.70
mergeConfigFunction · 0.70
migrateConfigStepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected