frontend/.pnpm-store/v3/files/27/7cbe8ed102c9c35816f8705cb06be7df408bc235cf8cc423073a7dcf4a48b7051979290b8e3e99eee58953b101547a907a3d9b475b71679504ceb96372ba96

6 lines
192 B
Plaintext

'use strict';
var $isNaN = require('./isNaN');
module.exports = function (x) { return (typeof x === 'number' || typeof x === 'bigint') && !$isNaN(x) && x !== Infinity && x !== -Infinity; };