Files
boc/web-v2/node_modules/motion-utils/dist/es/wrap.mjs
T

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