first
This commit is contained in:
7
node_modules/core-js/internals/same-value-zero.js
generated
vendored
Normal file
7
node_modules/core-js/internals/same-value-zero.js
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
// `SameValueZero` abstract operation
|
||||
// https://tc39.es/ecma262/#sec-samevaluezero
|
||||
module.exports = function (x, y) {
|
||||
// eslint-disable-next-line no-self-compare -- NaN check
|
||||
return x === y || x != x && y != y;
|
||||
};
|
Reference in New Issue
Block a user