UNPKG

@popperjs/core

Version:

Tooltip and Popover Positioning Engine

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