projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4cf276656365ca4e6a68d1c56d0ed99c8471ddcc
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function () {
4
var isNaN = Number.isNaN;
5
if (typeof isNaN !== 'function') return false;
6
return !isNaN({}) && isNaN(NaN) && !isNaN(34);
7
};