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