MCPcopy Create free account
hub / github.com/claude-code-best/claude-code / isNotFound

Function isNotFound

src/utils/udsMessaging.ts:163–169  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

161}
162
163function isNotFound(error: unknown): boolean {
164 return (
165 typeof error === 'object' &&
166 error !== null &&
167 (error as NodeJS.ErrnoException).code === 'ENOENT'
168 )
169}
170
171async function assertPrivateCapabilityDir(dir: string): Promise<void> {
172 let stat: Awaited<ReturnType<typeof lstat>>

Callers 2

ensureSocketParentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected