What is @stdlib/math-base-assert-is-nan?
@stdlib/math-base-assert-is-nan is a utility package that provides a function to check if a value is NaN (Not-a-Number). This is useful in various mathematical and data validation contexts where you need to ensure that the values you're working with are valid numbers.
What are @stdlib/math-base-assert-is-nan's main functionalities?
Check if a value is NaN
This feature allows you to check if a given value is NaN. The function returns true if the value is NaN and false otherwise.
const isNaN = require('@stdlib/math-base-assert-is-nan');
console.log(isNaN(NaN)); // true
console.log(isNaN(5)); // false
console.log(isNaN('hello')); // false
Other packages similar to @stdlib/math-base-assert-is-nan
is-nan
The 'is-nan' package provides a similar functionality to check if a value is NaN. It is a lightweight package that offers a straightforward way to determine if a value is NaN. Compared to @stdlib/math-base-assert-is-nan, it offers a more minimalistic approach without additional utilities.
lodash
Lodash is a popular utility library that includes a function _.isNaN to check if a value is NaN. While Lodash provides a broader range of utilities beyond just checking for NaN, it is a larger library and may be overkill if you only need the NaN-checking functionality.
number-is-nan
The 'number-is-nan' package is a ponyfill for Number.isNaN, which is a more reliable way to check for NaN values compared to the global isNaN function. It is a small and focused package, similar to @stdlib/math-base-assert-is-nan, but specifically designed to replicate the behavior of Number.isNaN.
About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
isnan
Test if a double-precision floating-point numeric value is NaN.
Installation
npm install @stdlib/math-base-assert-is-nan
Usage
var isnan = require( '@stdlib/math-base-assert-is-nan' );
isnan( x )
Tests if a double-precision floating-point numeric
value is NaN
.
var bool = isnan( NaN );
Examples
var isnan = require( '@stdlib/math-base-assert-is-nan' );
var bool = isnan( NaN );
bool = isnan( 5.0 );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
License
See LICENSE.
Copyright
Copyright © 2016-2023. The Stdlib Authors.
0.1.0 (2023-09-22)
<section class="features">
Features
58832ee
- update minimum TypeScript version
</section>
<!-- /.features -->
<section class="breaking-changes">
BREAKING CHANGES
</section>
<!-- /.breaking-changes -->
<section class="commits">
Commits
<details>
58832ee
- feat: update minimum TypeScript version (by Philipp Burckhardt)b734544
- refactor: use strictEqual checks (by Philipp Burckhardt)28e1c84
- docs: resolve C lint errors (by Athan Reines)
</details>
</section>
<!-- /.commits -->
<section class="contributors">
Contributors
A total of 2 people contributed to this release. Thank you to the following contributors:
- Athan Reines
- Philipp Burckhardt
</section>
<!-- /.contributors -->
</section>
<!-- /.release -->
<section class="release" id="v0.0.8">