Sign in
webkit
/
WebKit
/
031545c904ac108f0063861f58a3e4e2a299b0c0
/
.
/
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"
);