Files
Chatapp/Backend/node_modules/math-intrinsics/isNegativeZero.js
T
francesco448 0a448b1250 first commit
2026-03-14 14:59:41 +01:00

7 lines
157 B
JavaScript

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