Find the floating point number immediately after any given number
npm install nextafternextafter
=========
Returns the next floating point number after any given number in the direction of some other floating point number. (Like the C standard library function).


``javascript
var nextafter = require("nextafter")
var x = 0.1
console.log("The number", x, "is between", nextafter(x, -Infinity), "and", nextafter(x, Infinity))
`
Output:
``
The number 0.1 is between 0.09999999999999999 and 0.10000000000000002
``
npm install nextafter
#### require("nextafter")(from, to)from
Returns the floating point number closest to in the direction on of to
* If from === to, then returns fromfrom < to
* If , then returns next representable float after fromfrom > to
* If , then returns the floating point nubmer immediately before from`