unis_crm/frontend/node_modules/motion-utils/dist/es/wrap.mjs

8 lines
190 B
JavaScript
Raw Normal View History

2026-03-19 06:27:20 +00:00
const wrap = (min, max, v) => {
const rangeSize = max - min;
return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;
};
export { wrap };
//# sourceMappingURL=wrap.mjs.map