PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
math
/** * Checks if value is inside the range. */ function inRange(val, min, max, threshold){ threshold = threshold || 0; return (val + threshold >= min && val - threshold <= max); } module.exports = inRange;
[-] loop.js
[edit]
[-] norm.js
[edit]
[-] overflow.js
[edit]
[+]
..
[-] clamp.js
[edit]
[-] round.js
[edit]
[-] countSteps.js
[edit]
[-] isNear.js
[edit]
[-] inRange.js
[edit]
[-] lerp.js
[edit]
[-] ceil.js
[edit]
[-] map.js
[edit]
[-] floor.js
[edit]