Sign in
webkit
/
WebKit
/
c6951ff6f7d972427c05df8e7c39e3f2d74bf29c
/
.
/
JSTests
/
es6
/
Object_static_methods_Object.is.js
blob: 44c0915f058ed722a112fa1e261bc7af500aba23 [
file
] [
log
] [
blame
]
function
test
()
{
return
typeof
Object
.
is
===
'function'
&&
Object
.
is
(
NaN
,
NaN
)
&&
!
Object
.
is
(-
0
,
0
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);