shift73k/assets_old/node_modules/@popperjs/core/lib/utils/within.js.flow

11 lines
203 B
Text
Raw Normal View History

// @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));
}