UNPKG

@jeremyckahn/farmhand

Version:
3 lines (2 loc) 114 B
export const clampNumber = (num: number, min: number, max: number) => num <= min ? min : num >= max ? max : num