UNPKG

mout

Version:

Modular Utilities

6 lines (5 loc) 171 B
/** * Checks if value is inside the range. */ declare function inRange(val: number, min: number, max: number, threshold?: number): boolean; export default inRange;