UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

11 lines (8 loc) 244 B
"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; };