• File: isNegativeZero.js
  • Full Path: /var/www/nodejs/simo_meps_file_script/node_modules/math-intrinsics/isNegativeZero.js
  • Date Modified: 02/28/2025 8:55 PM
  • File size: 143 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

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