c46d6e5e61108232029f889a9d51c8dc2e78a04c5e45bb9df6ef38a442e1d7528aca2f89d0073aa66bc57807cd5c4bf045dc7a30dd0bc0ef010f8c30b0c29c 190 B

12345
  1. // 7.2.9 SameValue(x, y)
  2. module.exports = Object.is || function is(x, y) {
  3. // eslint-disable-next-line no-self-compare
  4. return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
  5. };