mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
"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;
|
|
};
|