DIR : /home/kozerus/public_html/cropex/node/node_modules/framer-motion/dist/es/utils/clamp.mjs
/home/kozerus/public_html/cropex/node/node_modules/framer-motion/dist/es/utils
const clamp = (min, max, v) => {
if (v > max)
return max;
if (v < min)
return min;
return v;
};
export { clamp };
//