Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
core-js
/
library
/
modules
/
_same-value.js
blob: c6d045e831b7b26fb73b686750c23258be58dc63 [
file
]
// 7.2.9 SameValue(x, y)
module
.
exports
=
Object
.
is
||
function
is
(
x
,
y
)
{
// eslint-disable-next-line no-self-compare
return
x
===
y
?
x
!==
0
||
1
/
x
===
1
/
y
:
x
!=
x
&&
y
!=
y
;
};