Files
kubernetes/prod/kafkachat/chat-backend/node_modules/math-intrinsics/isNegativeZero.js
T
2026-05-31 16:07:30 +02:00

7 lines
143 B
JavaScript

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