index
:
Website Creator
main
Node+React+MongoDB App to help create and maintain websites (WIP)
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
node_modules
/
es-abstract
/
helpers
/
isNaN.js
blob: cb8631dca6c00e507c1146b8400c09c5369835c0 (
plain
) (
blame
)
1
2
3
4
5
'use strict'
;
module
.
exports
=
Number
.
isNaN
||
function
isNaN
(
a
)
{
return
a
!==
a
;
};