source: node_modules/es-toolkit/dist/compat/predicate/isNaN.d.mts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Added visualizations

  • Property mode set to 100644
File size: 336 bytes
RevLine 
[a762898]1/**
2 * Checks if the value is NaN.
3 *
4 * @param {any} value - The value to check.
5 * @returns {boolean} `true` if the value is NaN, `false` otherwise.
6 *
7 * @example
8 * isNaN(NaN); // true
9 * isNaN(0); // false
10 * isNaN('NaN'); // false
11 * isNaN(undefined); // false
12 */
13declare function isNaN(value?: any): boolean;
14
15export { isNaN };
Note: See TracBrowser for help on using the repository browser.