blob: ceba8c552b2f8156dfbc55a81b443ec7cd6f579a [file] [edit]
'use strict';
// TODO, semver-major: remove
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};