Skip to content

Commit 59cbb55

Browse files
fix: lint error
1 parent e02a08b commit 59cbb55

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanors/lib/dnanmeanors.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
2424
var ndarray = require( './ndarray.js' );
2525

26+
2627
// MAIN //
2728

2829
/**

lib/node_modules/@stdlib/stats/base/dnanmeanors/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
XX/**
1+
/**
22
* @license Apache-2.0
33
*
44
* Copyright (c) 2020 The Stdlib Authors.

lib/node_modules/@stdlib/stats/base/dnanmeanors/test/test.ndarray.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -110,28 +110,6 @@ tape( 'the function supports a `stride` parameter', function test( t ) {
110110
t.end();
111111
});
112112

113-
tape( 'the function supports a negative `stride` parameter', function test( t ) {
114-
var x;
115-
var v;
116-
117-
x = new Float64Array([
118-
1.0, // 4
119-
2.0,
120-
2.0, // 3
121-
-7.0,
122-
-2.0, // 2
123-
3.0,
124-
4.0, // 1
125-
2.0,
126-
NaN // 0
127-
]);
128-
129-
v = dnanmeanors( 5, x, -2, 6 );
130-
131-
t.strictEqual( v, 1.25, 'returns expected value' );
132-
t.end();
133-
});
134-
135113
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
136114
var x;
137115
var v;

0 commit comments

Comments
 (0)