root
Inserindo smolagents[mcp] no requirements
63a73e3
raw
history blame
143 Bytes
'use strict';
/** @type {import('./isNegativeZero')} */
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};