d73b058178dd573b5bc55b06e149ed790f6530b7
[platform/framework/web/crosswalk-tizen.git] /
1 define(function(){
2     /**
3      * Round value up with a custom radix.
4      */
5     function ceil(val, step){
6         step = Math.abs(step || 1);
7         return Math.ceil(val / step) * step;
8     }
9
10     return ceil;
11 });