viabiliza/node_modules/math-intrinsics/isNegativeZero.js
equipe desenvolvimento a499796cf7 first commit
2025-10-15 15:07:36 -03:00

7 lines
143 B
JavaScript

'use strict';
/** @type {import('./isNegativeZero')} */
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};