Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@stdlib/math-base-assert-is-nan
Advanced tools
Test if a double-precision floating-point numeric value 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.
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
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 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.
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.
Test if a double-precision floating-point numeric value is NaN.
npm install @stdlib/math-base-assert-is-nan
var isnan = require( '@stdlib/math-base-assert-is-nan' );
Tests if a double-precision floating-point numeric
value is NaN
.
var bool = isnan( NaN );
// returns true
var isnan = require( '@stdlib/math-base-assert-is-nan' );
var bool = isnan( NaN );
// returns true
bool = isnan( 5.0 );
// returns false
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.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
0.0.4 (2021-06-16)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.3">FAQs
Test if a double-precision floating-point numeric value is NaN.
The npm package @stdlib/math-base-assert-is-nan receives a total of 0 weekly downloads. As such, @stdlib/math-base-assert-is-nan popularity was classified as not popular.
We found that @stdlib/math-base-assert-is-nan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.