Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Seleccion
/
node_modules
/
math-intrinsics
:
isFinite.js
Advanced Search
Upload
New Item
Settings
-- Select Mode --
-- Select Theme --
-- Select Font Size --
Back
Back Up
Normal Editor
Save
'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; };