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

Function minDefined

src/ink/output.ts:123–130  ·  view source on GitHub ↗
(
  a: number | undefined,
  b: number | undefined,
)

Source from the content-addressed store, hash-verified

121}
122
123function minDefined(
124 a: number | undefined,
125 b: number | undefined,
126): number | undefined {
127 if (a === undefined) return b
128 if (b === undefined) return a
129 return Math.min(a, b)
130}
131
132type UnclipOperation = {
133 type: 'unclip'

Callers 1

intersectClipFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected