mcp-jokes / node_modules /math-intrinsics /isNegativeZero.js
petergits
this is the first checkin, probably don't need the node modules.
a811242
'use strict';
/** @type {import('./isNegativeZero')} */
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};