// @flow export default function within( min: number, value: number, max: number ): number { return Math.max(min, Math.min(value, max)); }