UNPKG

pkg-components

Version:
2 lines (1 loc) 103 B
export const clamp = (value: number, min: number, max: number) => Math.min(Math.max(value, min), max)