Test if two floating point numbers overlap
npm install test-float-overlaptest-float-overlap
==================
Test if the significands of two floating point numbers overlap.
``javascript
var testOverlap = require("test-float-overlap")
console.log(testOverlap(0.5, 1.0), testOverlap(1.5, 1.0))
`
Output:
`javascript`
false true
``
npm install test-float-overlap
* a and b are both double precision IEEE754 numbers
Returns true if the binary representations of the significands of the numbers of overlap, false` otherwise