Initial commit: Setup serveur underground et structure

This commit is contained in:
WhyKorp's server
2026-04-30 11:44:03 +00:00
parent 28cbcf258b
commit da221a792c
968 changed files with 175350 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
'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;
};