asd/asd-pc/node_modules/core-js/internals/same-value.js
愉快的大福 eb8378e551 init
2024-11-21 11:06:22 +08:00

8 lines
308 B
JavaScript

// `SameValue` abstract operation
// https://tc39.es/ecma262/#sec-samevalue
// eslint-disable-next-line es-x/no-object-is -- safe
module.exports = Object.is || function is(x, y) {
// eslint-disable-next-line no-self-compare -- NaN check
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
};