Files
jiahong-doc/code/enterprise-homepage/node_modules/math-intrinsics/isFinite.js
T
jiahong 021b3f82db up
2026-03-27 02:12:03 +08: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;
};