mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-06-01 22:27:27 +00:00
11 lines
244 B
JavaScript
11 lines
244 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;
|
|
};
|