blob: c6d045e831b7b26fb73b686750c23258be58dc63 [file] [log] [blame]
// 7.2.9 SameValue(x, y)
module.exports = Object.is || function is(x, y) {
// eslint-disable-next-line no-self-compare
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
};