projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
692acdd6ca77992d02abf183ec3089bec4b61b88
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var isInteger = require('../is-integer/shim')
4
, maxValue = require('../max-safe-integer')
5
6
, abs = Math.abs;
7
8
module.exports = function (value) {
9
if (!isInteger(value)) return false;
10
return abs(value) <= maxValue;
11
};