export const clipNumber = (target: number, min = 0, max = Infinity): number => Math.max(min, Math.min(target, max));