Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
devtools
/
node_modules
/
is-nan
/
implementation.js
blob: 6200b6b7c1d288325d9ffd4155d63e0ae77b4434 [
file
] [
log
] [
blame
]
'use strict'
;
/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */
module
.
exports
=
function
isNaN
(
value
)
{
return
value
!==
value
;
};