MCPcopy Create free account
hub / github.com/codeaashu/claude-code / abortCombined

Function abortCombined

src/utils/combinedAbortSignal.ts:28–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26
27 let timer: ReturnType<typeof setTimeout> | undefined
28 const abortCombined = () => {
29 if (timer !== undefined) clearTimeout(timer)
30 combined.abort()
31 }
32
33 if (timeoutMs !== undefined) {
34 timer = setTimeout(abortCombined, timeoutMs)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected