UNPKG

@popperjs/core

Version:

Tooltip and Popover Positioning Engine

11 lines (9 loc) 203 B
// @flow import { max as mathMax, min as mathMin } from './math'; export default function within( min: number, value: number, max: number ): number { return mathMax(min, mathMin(value, max)); }