Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@stdlib/math-base-special-min
Advanced tools
Return the minimum value.
npm install @stdlib/math-base-special-min
var min = require( '@stdlib/math-base-special-min' );
Returns the minimum value.
var v = min( 4.2, 3.14 );
// returns 3.14
v = min( +0.0, -0.0 );
// returns -0.0
v = min( 4.2, 3.14, -1.0, 6.8 );
// returns -1.0
If any argument is NaN
, the function returns NaN
.
var v = min( 4.2, NaN );
// returns NaN
v = min( NaN, 3.14 );
// returns NaN
If not provided any arguments, the function returns +infinity
.
var v = min();
// returns Infinity
min() = +infinity
.var minstd = require( '@stdlib/random-base-minstd-shuffle' );
var min = require( '@stdlib/math-base-special-min' );
var x;
var y;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
x = minstd();
y = minstd();
v = min( x, y );
console.log( 'min(%d,%d) = %d', x, y, v );
}
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.6 (2021-08-22)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.5">FAQs
Return the minimum value.
The npm package @stdlib/math-base-special-min receives a total of 20,612 weekly downloads. As such, @stdlib/math-base-special-min popularity was classified as popular.
We found that @stdlib/math-base-special-min 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.