summaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/_same-value.js
blob: 8c2b8c7f6b5b9b42486333de3877be1bea7ed6d1 (plain)
1
2
3
4
// 7.2.9 SameValue(x, y)
module.exports = Object.is || function is(x, y){
  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
};