Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
math-intrinsics
/
isNaN.js
blob: e36475cf878ca6beda4dfd1cd3881759b72270c6 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
/** @type {import('./isNaN')} */
module
.
exports
=
Number
.
isNaN
||
function
isNaN
(
a
)
{
return
a
!==
a
;
};