(actual, min, max)
| 15 | return actual >= ((1 - threshold) * expected) && actual <= ((1 + threshold) * expected); |
| 16 | } |
| 17 | function isInRange (actual, min, max) { |
| 18 | return actual >= min && actual <= max; |
| 19 | } |
| 20 | function isInteger (val) { |
| 21 | return Number.isInteger(val); |
| 22 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…