Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
es-abstract
/
2019
/
SameValueZero.js
blob: 8880e915941eeae2d890f2bdeb1bd057516e3d50 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
var
$isNaN
=
require
(
'math-intrinsics/isNaN'
);
// https://262.ecma-international.org/6.0/#sec-samevaluezero
module
.
exports
=
function
SameValueZero
(
x
,
y
)
{
return
(
x
===
y
)
||
(
$isNaN
(
x
)
&&
$isNaN
(
y
));
};