Files
Kotzu 319050b353 NUI-SIM
incercare de NUI-Offline Viewer ca sa nu mai intru in joc pt a vedea NUI-uri.
2026-03-30 01:40:16 +03:00

13 lines
262 B
JavaScript

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