Skip to content

Commit c7753b3

Browse files
committed
fix: resolve lint errors
1 parent bfd00e6 commit c7753b3

File tree

3 files changed

+5
-19
lines changed

3 files changed

+5
-19
lines changed

lib/node_modules/@stdlib/stats/incr/nanmrange/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,6 @@ console.log( accumulator() );
132132

133133
<section class="related">
134134

135-
* * *
136-
137-
## See Also
138-
139-
- <span class="package-name">[`@stdlib/stats/incr/mrange`][@stdlib/stats/incr/mrange]</span><span class="delimiter">: </span><span class="description">compute a moving range incrementally.</span>
140-
- <span class="package-name">[`@stdlib/stats/incr/nanmean`][@stdlib/stats/incr/nanmean]</span><span class="delimiter">: </span><span class="description">compute an arithmetic mean incrementally, ignoring NaN values.</span>
141-
- <span class="package-name">[`@stdlib/stats/incr/range`][@stdlib/stats/incr/range]</span><span class="delimiter">: </span><span class="description">compute a range incrementally.</span>
142-
143135
</section>
144136

145137
<!-- /.related -->
@@ -152,12 +144,6 @@ console.log( accumulator() );
152144

153145
<!-- <related-links> -->
154146

155-
[@stdlib/stats/incr/mrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/mrange
156-
157-
[@stdlib/stats/incr/nanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/nanmean
158-
159-
[@stdlib/stats/incr/range]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/range
160-
161147
<!-- </related-links> -->
162148

163149
</section>

lib/node_modules/@stdlib/stats/incr/nanmrange/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ console.log( '\nValue\tRange\n' );
3434
for ( i = 0; i < 100; i++ ) {
3535
v = randu() > 0.2 ? NaN : randu() * 100.0;
3636
r = accumulator( v );
37-
console.log( '%d\t%d', v.toFixed( 4 ),(r === null) ? null : r.toFixed( 4 ) );
37+
console.log( '%d\t%d', v.toFixed( 4 ), (r === null) ? null : r.toFixed( 4 ) );
3838
}

lib/node_modules/@stdlib/stats/incr/nanmrange/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ tape( 'if provided NaN, the accumulator function ignores it and returns the prev
400400
6.0, // range between 1.0 and 7.0
401401
9.0 // range between 1.0 and 10.0
402402
];
403-
403+
404404
for ( i = 0; i < data.length; i++ ) {
405405
v = acc( data[ i ] );
406406
if ( isnan( expected[ i ] ) ) {
@@ -411,8 +411,8 @@ tape( 'if provided NaN, the accumulator function ignores it and returns the prev
411411
t.equal( v, expected[ i ], 'returns expected value for window '+i );
412412
}
413413
}
414-
414+
415415
t.equal( acc(), 9.0, 'returns current range when called without arguments' );
416-
416+
417417
t.end();
418-
});
418+
});

0 commit comments

Comments
 (0)