UNPKG

negative-infinity

Version:

Check if a number given is negative Infinity or not.

7 lines (5 loc) 91 B
module.exports = { check: function check (number) { return number === -Infinity; } };