added whole system from ola4doc
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
var isInteger = require('../is-integer/shim')
|
||||
, maxValue = require('../max-safe-integer')
|
||||
|
||||
, abs = Math.abs;
|
||||
|
||||
module.exports = function (value) {
|
||||
if (!isInteger(value)) return false;
|
||||
return abs(value) <= maxValue;
|
||||
};
|
||||
Reference in New Issue
Block a user