21c04a6ff5d2c4b16d7056568dcb2bab9069be7be24cb8977b518f22557ca1b948b8d9c95a51d5b24d8796009ce1c31b9540d7875a7c8616c017e651df2355 143 B

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