Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
es-abstract
/
2017
/
SameValueZero.js
blob: bf1a1486a167e2c8014753d513e5561918ae3b89 [
file
] [
log
] [
blame
]
'use strict'
;
var
$isNaN
=
require
(
'../helpers/isNaN'
);
// https://ecma-international.org/ecma-262/6.0/#sec-samevaluezero
module
.
exports
=
function
SameValueZero
(
x
,
y
)
{
return
(
x
===
y
)
||
(
$isNaN
(
x
)
&&
$isNaN
(
y
));
};