Files
IWD2-02/INFO-3168 (JS 2)/Projects/Project2/Levi-McLean-customers-app/node_modules/math-intrinsics/isFinite.js
T
2026-03-25 16:10:17 -04: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;
};