mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-24 04:51:24 +01:00
6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isNegativeZero(number) {
|
|
return number === 0 && (1 / number) === -Infinity;
|
|
};
|
|
|