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

node_modules.bower.lib.node_modules.mout.math.loop.js Maven / Gradle / Ivy


    /**
    * Loops value inside range.
    */
    function loop(val, min, max){
        return val < min? max : (val > max? min : val);
    }

    module.exports = loop;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy