MCPcopy Index your code
hub / github.com/PatrickSys/codebase-context / isRecord

Function isRecord

src/memory/store.ts:23–25  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

21};
22
23function isRecord(value: unknown): value is Record<string, unknown> {
24 return typeof value === 'object' && value !== null;
25}
26
27function normalizePathLike(value: string): string {
28 return value.replace(/\\/g, '/').replace(/^\.\//, '');

Callers 2

normalizeMemoryScopeFunction · 0.70
normalizeMemoryFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected