mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
244 Bytes
"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;
};