Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@stdlib/math-iter-special-riemann-zeta
Advanced tools
Create an iterator which evaluates the Riemann zeta function for each iterated value.
Create an iterator which evaluates the Riemann zeta function for each iterated value.
npm install @stdlib/math-iter-special-riemann-zeta
var iterZeta = require( '@stdlib/math-iter-special-riemann-zeta' );
Returns an iterator which iteratively evaluates the Riemann zeta function.
var array2iterator = require( '@stdlib/array-to-iterator' );
var it = iterZeta( array2iterator( [ 1.1, -4.0 ] ) );
// returns <Object>
var v = it.next().value;
// returns ~10.584
v = it.next().value;
// returns 0.0
// ...
The returned iterator protocol-compliant object has the following properties:
value
property and a done
property having a boolean
value indicating whether the iterator is finished.NaN
), the returned iterator returns NaN
. If non-numeric iterated values are possible, you are advised to provide an iterator
which type checks and handles non-numeric values accordingly.Symbol.iterator
and a provided iterator is iterable, the returned iterator is iterable.var uniform = require( '@stdlib/random-iter-uniform' );
var iterZeta = require( '@stdlib/math-iter-special-riemann-zeta' );
// Create a seeded iterator for generating pseudorandom numbers:
var rand = uniform( 1.1, 50.0, {
'seed': 1234,
'iter': 10
});
// Create an iterator which consumes the pseudorandom number iterator:
var it = iterZeta( rand );
// Perform manual iteration...
var v;
while ( true ) {
v = it.next();
if ( v.done ) {
break;
}
console.log( v.value );
}
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.3 (2021-06-27)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.2">FAQs
Create an iterator which evaluates the Riemann zeta function for each iterated value.
The npm package @stdlib/math-iter-special-riemann-zeta receives a total of 9 weekly downloads. As such, @stdlib/math-iter-special-riemann-zeta popularity was classified as not popular.
We found that @stdlib/math-iter-special-riemann-zeta 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.