frontend/.pnpm-store/v3/files/6e/2c00b63099f682a593d8c7da2b53fad3c557039af5a49f258b531a5e5ae5a9ad5bc838d45640626bde88f2af8dc00dad7310d76cb88368aa2afc611f10efd5

10 lines
208 B
Plaintext

"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;
};