isNegativeZero.js 101 B

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