- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
13 lines
262 B
JavaScript
Executable File
13 lines
262 B
JavaScript
Executable File
'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;
|
|
};
|
|
|