TenantAtlas/apps/platform/.pnpm-store/v10/files/64/21c04a6ff5d2c4b16d7056568dcb2bab9069be7be24cb8977b518f22557ca1b948b8d9c95a51d5b24d8796009ce1c31b9540d7875a7c8616c017e651df2355
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

7 lines
143 B
Plaintext

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