MCPcopy Index your code
hub / github.com/callstack/agent-device / isEpipeError

Function isEpipeError

src/utils/exec.ts:748–752  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

746}
747
748function isEpipeError(error: unknown): boolean {
749 return (
750 error instanceof Error && 'code' in error && (error as NodeJS.ErrnoException).code === 'EPIPE'
751 );
752}

Callers 1

runSpawnedCommandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected