Files
ETB/ETB-FrontEnd/node_modules/motion-utils/dist/es/wrap.mjs
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

7 lines
156 B
JavaScript

const wrap = (min, max, v) => {
const rangeSize = max - min;
return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;
};
export { wrap };