UNPKG

mout

Version:

Modular Utilities

6 lines (5 loc) 156 B
/** * Check if value is close to target. */ declare function isNear(val: number, target: number, threshold: number): boolean; export default isNear;