Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Dedy Kurniawan / pxe-utbksvr

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • pxe-utbksvr
  • node_modules
  • math-intrinsics
  • isNegativeZero.js
  • Dedy Kurniawan's avatar
    initial commit · e4019636
    Dedy Kurniawan committed Feb 25, 2026
    e4019636
isNegativeZero.js 143 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6
'use strict';

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