UNPKG

mout

Version:

Modular Utilities

9 lines (7 loc) 217 B
/** * Checks if value is inside the range. */ function inRange(val: number, min: number, max: number, threshold: number = 0) { return val + threshold >= min && val - threshold <= max; } export default inRange;