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-max
Advanced tools
Return the maximum value.
npm install @stdlib/math-base-special-max
var max = require( '@stdlib/math-base-special-max' );
Returns the maximum value.
var v = max( 4.2, 3.14 );
// returns 4.2
v = max( +0.0, -0.0 );
// returns +0.0
v = max( 4.2, 3.14, -1.0, 6.8 );
// returns 6.8
If any argument is NaN
, the function returns NaN
.
var v = max( 4.2, NaN );
// returns NaN
v = max( NaN, 3.14 );
// returns NaN
If not provided any arguments, the function returns -infinity
.
var v = max();
// returns -Infinity
max() = -infinity
.var minstd = require( '@stdlib/random-base-minstd-shuffle' );
var max = require( '@stdlib/math-base-special-max' );
var x;
var y;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
x = minstd();
y = minstd();
v = max( x, y );
console.log( 'max(%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.5 (2021-07-07)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.4">FAQs
Return the maximum value.
The npm package @stdlib/math-base-special-max receives a total of 0 weekly downloads. As such, @stdlib/math-base-special-max popularity was classified as not popular.
We found that @stdlib/math-base-special-max 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.