0c89053632783bc7ddac1391b586c1290de3e6e3
[platform/framework/web/crosswalk-tizen.git] /
1 define(function(){
2     /**
3     * Checks if value is inside the range.
4     */
5     function inRange(val, min, max, threshold){
6         threshold = threshold || 0;
7         return (val + threshold >= min && val - threshold <= max);
8     }
9
10     return inRange;
11 });