shift73k/assets_old/node_modules/@popperjs/core/dist/esm/utils/within.js

4 lines
155 B
JavaScript
Raw Normal View History

import { max as mathMax, min as mathMin } from "./math.js";
export default function within(min, value, max) {
return mathMax(min, mathMin(value, max));
}