File "isNegativeZero.js"

Full Path: C:/wamp64/www/Seleccion/node_modules/is-binary-path/isNegativeZero.js
File size: 143 bytes
MIME-type: text/plain
Charset: utf-8

'use strict';

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