blob: 045b36adf29913fcdf76d01dce2e411a6679bec8 [file] [log] [blame] [edit]
'use strict';
module.exports = function isNegativeZero(x) {
return x === 0 && 1 / x === 1 / -0;
};