智慧水务管理系统 - 精河县供水工程综合管理平台

isNegativeZero.js 143B

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