astro-ghostcms/.pnpm-store/v3/files/63/c0629e1cf01e74c3b85233ef701...

6 lines
101 B
Plaintext

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