Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Vanilagy/webcodecs-polyfill
/ clamp
Function
clamp
src/misc.ts:550–552 ·
view source on GitHub ↗
(value: number, min: number, max: number)
Source
from the content-addressed store, hash-verified
548
};
549
550
export
const
clamp = (value: number, min: number, max: number) => {
551
return
Math.max(min, Math.min(max, value));
552
};
Callers
1
getWriteFunction
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected