Files
2026-07-10 11:28:16 +08:00

7 lines
143 B
Go

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