fdf7c8a9575ea2623ac35207a4da1326d285a647da64d58e5b2ded9255b36fb41e832c0e110b259fa0e534e6aeaeaec412a4e1b9081b353adeec1cc9515b8d 235 B

1234567
  1. 'use strict';
  2. // `SameValueZero` abstract operation
  3. // https://tc39.es/ecma262/#sec-samevaluezero
  4. module.exports = function (x, y) {
  5. // eslint-disable-next-line no-self-compare -- NaN check
  6. return x === y || x !== x && y !== y;
  7. };