Current File : //lib/node_modules/bower/lib/node_modules/mout/src/math/countSteps.js
define(function(){
    /**
    * Count number of full steps.
    */
    function countSteps(val, step, overflow){
        val = Math.floor(val / step);

        if (overflow) {
            return val % overflow;
        }

        return val;
    }

    return countSteps;
});