Skip to content

Commit dd030be

Browse files
fix: fixing linting errors for the nanminmaxabs module
1 parent dc6ae0c commit dd030be

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

lib/node_modules/@stdlib/stats/incr/nanminmaxabs/lib/index.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* @module @stdlib/stats/incr/nanminmaxabs
23
* @license Apache-2.0
34
*
45
* Copyright (c) 2025 The Stdlib Authors.
@@ -16,10 +17,17 @@
1617
* limitations under the License.
1718
*/
1819

19-
"use strict";
20+
'use strict';
21+
22+
// MODULES //
23+
24+
var main = require( './main.js' );
25+
26+
27+
// EXPORTS //
2028

2129
/**
22-
* Compute minimum and maximum absolute values incrementally, **ignoring NaN values**.
30+
* Compute minimum and maximum absolute values incrementally, ignoring NaN values.
2331
*
2432
* @module @stdlib/stats/incr/nanminmaxabs
2533
*
@@ -49,11 +57,4 @@
4957
* mm = accumulator();
5058
* // returns [ 2.0, 5.0 ]
5159
*/
52-
53-
// MODULES //
54-
55-
var main = require("./main.js");
56-
57-
// EXPORTS //
58-
5960
module.exports = main;

lib/node_modules/@stdlib/stats/incr/nanminmaxabs/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var isArrayLike = require("@stdlib/assert/is-array-like");
2626
/**
2727
* Returns an accumulator function which incrementally computes minimum and maximum absolute values, ignoring NaNs.
2828
*
29-
* @module @stdlib
29+
* @module @stdlib/stats/incr/nanminmaxabs
3030
* @param {Collection} [out] - output array
3131
* @returns {Function} accumulator function
3232
* @throws {TypeError} if out is not an array-like object

0 commit comments

Comments
 (0)