All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.wrap.es.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
const wrap = (min, max, v) => {
    const rangeSize = max - min;
    return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;
};

export { wrap };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy