Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytebase/bytebase
/ minmax
Function
minmax
frontend/src/utils/math.ts:1–5 ·
view source on GitHub ↗
(value: number, min: number, max: number)
Source
from the content-addressed store, hash-verified
1
export
const
minmax = (value: number, min: number, max: number) => {
2
if
(value < min)
return
min;
3
if
(value > max)
return
max;
4
return
value;
5
};
Callers
9
handleInputChange
Function · 0.90
progressiveDelay
Function · 0.90
useDragCanvas
Function · 0.90
fitBBox
Function · 0.90
move
Function · 0.90
HoverPanel
Function · 0.90
DatabaseHoverPanel
Function · 0.90
poll
Function · 0.90
usePolling
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected