UNPKG

is-positive-int

Version:

Validate if a value is a positive integer between 0 & Number.MAX_SAFE_INTEGER

2 lines 156 B
function t(e){let r=Number.MAX_SAFE_INTEGER||9007199254740991;return Number.isInteger(e)&&e>=0&&e<=r}export{t as default}; //# sourceMappingURL=index.js.map