moon_flash / node_modules /math-intrinsics /isNegativeZero.js
AK51's picture
Upload 1987 files
e472a78 verified
'use strict';
/** @type {import('./isNegativeZero')} */
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};