Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

18
node_modules/es-toolkit/dist/compat/predicate/isNaN.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
//#region src/compat/predicate/isNaN.ts
/**
* Checks if the value is NaN.
*
* @param {any} value - The value to check.
* @returns {boolean} `true` if the value is NaN, `false` otherwise.
*
* @example
* isNaN(NaN); // true
* isNaN(0); // false
* isNaN('NaN'); // false
* isNaN(undefined); // false
*/
function isNaN(value) {
return Number.isNaN(value);
}
//#endregion
exports.isNaN = isNaN;