MCPcopy Create free account
hub / github.com/CodebuffAI/codebuff / clamp

Function clamp

web/src/lib/utils.ts:12–14  ·  view source on GitHub ↗
(value: number, min: number, max: number)

Source from the content-addressed store, hash-verified

10}
11
12export function clamp(value: number, min: number, max: number): number {
13 return Math.min(Math.max(value, min), max)
14}

Callers 6

useOrgAutoTopupFunction · 0.90
handleThresholdChangeFunction · 0.90
handleTopUpAmountChangeFunction · 0.90
useAutoTopupFunction · 0.90
handleThresholdChangeFunction · 0.90
handleTopUpAmountChangeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected