Viewing File: /home/ubuntu/misabloom-frontend-base/node_modules/@motionone/utils/lib/wrap.js

export const wrap = (min, max, v) => {
    const rangeSize = max - min;
    return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;
};
//# sourceMappingURL=wrap.js.map
Back to Directory File Manager