Files
Canteen-Management-System/counter-frontend/node_modules/motion-utils/dist/es/wrap.mjs
2026-07-24 12:06:56 +05:30

8 lines
190 B
JavaScript

const wrap = (min, max, v) => {
const rangeSize = max - min;
return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;
};
export { wrap };
//# sourceMappingURL=wrap.mjs.map