File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
lib/node_modules/@stdlib/stats/incr/nanminmaxabs/lib Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11/**
2+ * @module @stdlib /stats/incr/nanminmaxabs
23 * @license Apache-2.0
34 *
45 * Copyright (c) 2025 The Stdlib Authors.
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 *
4957 * mm = accumulator();
5058 * // returns [ 2.0, 5.0 ]
5159 */
52-
53- // MODULES //
54-
55- var main = require ( "./main.js" ) ;
56-
57- // EXPORTS //
58-
5960module . exports = main ;
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments