MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / clamp

Function clamp

console/src/components/DevtoolsContainer.tsx:47–48  ·  view source on GitHub ↗
(value: number, min: number, max: number)

Source from the content-addressed store, hash-verified

45const BUTTON_SIZE = 36;
46
47const clamp = (value: number, min: number, max: number) =>
48 Math.max(min, Math.min(max, value));
49
50const getStoredPosition = (): { x: number; y: number } => {
51 try {

Callers 1

DevtoolsContainerFunction · 0.70

Calls 2

minMethod · 0.80
maxMethod · 0.45

Tested by

no test coverage detected