MCPcopy
hub / github.com/CodebuffAI/codebuff / clamp

Function clamp

cli/src/utils/math.ts:1–3  ·  view source on GitHub ↗
(value: number, min: number, max: number)

Source from the content-addressed store, hash-verified

1export function clamp(value: number, min: number, max: number): number {
2 return Math.min(Math.max(value, min), max)
3}

Callers 3

tickMethod · 0.90
chat-store.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected