forked from ard/ruoyi-api

Administrator
2023-07-26 314acd3a006638ac8a2d620a1703ab2045d05927
1
2
3
4
5
// 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;
};