Current File : //lib/node_modules/bower/lib/node_modules/mout/src/math/ceil.js
define(function(){
    /**
     * Round value up with a custom radix.
     */
    function ceil(val, step){
        step = Math.abs(step || 1);
        return Math.ceil(val / step) * step;
    }

    return ceil;
});