is-equal-enough
Determine whether values are within a tolerance of each other
boolean
isEqualEnough(a, b, [tolerance]) ⇒ Determine whether two numbers are within a provided tolerance of each other.
Kind: global function
Returns: boolean
- Whether the numbers are within the tolerance or not.
Param | Type | Default | Description |
---|---|---|---|
a | number |
A number | |
b | number |
Another number | |
[tolerance] | number |
Number.EPSILON |
The acceptable tolerance. |
Example
;// → true
Scripts
test
– run the tests
npm run test
coverage
– generate and view code coverage as HTML
npm run coverage
lint
– lint the codebase
npm run lint
readme
– generate the README
npm run readme
compile
– compile the code
npm run compile
License
MIT @ Flip