export function cap(value: number, min: number, max: number) { return value < min ? min : value > max ? max : value }