Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
y = quantile( p[ i % p.length ], alpha[ i % alpha.length ], beta[ i % beta.length ] );

Check warning on line 50 in lib/node_modules/@stdlib/stats/base/dists/pareto-type1/quantile/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

This line has a length of 94. Maximum allowed is 80
if ( isnan( y ) ) {
b.fail( 'should not return NaN' );
}
Expand All @@ -60,7 +60,7 @@
b.end();
});

bench( format( '%s:factory', pkg ), function benchmark( b ) {
bench( format( '%s::factory', pkg ), function benchmark( b ) {
var myquantile;
var alpha;
var beta;
Expand Down