This website works better with JavaScript
Home
Explore
Help
Register
Sign In
lvjunxi
/
node_modules
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
25798bf1e1
Branches
Tags
master
node_modules
/
es-abstract
/
helpers
/
isNaN.js
isNaN.js
73 B
History
Raw
1
2
3
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};