projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
763218f80c3a8f7334a905448e7ff2e47d93a299
[platform/framework/web/crosswalk-tizen.git]
/
1
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
module.exports = inRange;
11