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

10 lines
203 B
Text

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