MCPcopy Index your code
hub / github.com/codeaashu/claude-code / hasParentPath

Function hasParentPath

src/utils/filePersistence/outputsScanner.ts:33–37  ·  view source on GitHub ↗
(
  entry: object,
)

Source from the content-addressed store, hash-verified

31}
32
33function hasParentPath(
34 entry: object,
35): entry is { parentPath: string; name: string } {
36 return 'parentPath' in entry && typeof entry.parentPath === 'string'
37}
38
39function hasPath(entry: object): entry is { path: string; name: string } {
40 return 'path' in entry && typeof entry.path === 'string'

Callers 1

getEntryParentPathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected