Viewing File: /home/ubuntu/route-and-root-frontend-base/node_modules/@motionone/utils/dist/clamp.cjs.js

'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

const clamp = (min, max, v) => Math.min(Math.max(v, min), max);

exports.clamp = clamp;
Back to Directory File Manager