c0629e1cf01e74c3b85233ef70130cefad4f7f3ab9e9b11d08ac095b28ddccea4763c4c17d3e5f854339827d05abed770af7183c483cdbca0823a29e2e5ad7 101 B

12345
  1. 'use strict';
  2. module.exports = function isNegativeZero(x) {
  3. return x === 0 && 1 / x === 1 / -0;
  4. };