projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5402939806da406007e9bb1915028d7b51ebebfa
[platform/framework/web/crosswalk-tizen.git]
/
1
// Credit: http://www.2ality.com/2014/05/is-integer.html
2
3
'use strict';
4
5
module.exports = function (value) {
6
if (typeof value !== 'number') return false;
7
return (value % 1 === 0);
8
};