MCPcopy Index your code
hub / github.com/ChartGPU/ChartGPU / clampInt

Function clampInt

examples/sampling/main.ts:116–116  ·  view source on GitHub ↗
(n: number, min: number, max: number)

Source from the content-addressed store, hash-verified

114});
115
116const clampInt = (n: number, min: number, max: number): number => Math.max(min, Math.min(max, n | 0));
117
118const formatPercent = (n: number): string => `${n.toFixed(2)}%`;
119

Callers 1

computeZoomAwareTargetFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected