UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

10 lines (8 loc) 208 B
"use strict"; module.exports = function (value) { try { value = Number(value); } catch (e) { return false; } if (isNaN(value)) return false; if (Math.abs(value) > 8.64e15) return false; return true; };