Skip to content

Commit f1ffd8b

Browse files
authored
style: fix indentation
Signed-off-by: Athan <[email protected]>
1 parent a0a285d commit f1ffd8b

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/stats/array/max-by/lib

1 file changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/array/max-by/lib/main.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ function maxBy( x, clbk, thisArg ) {
7373
return strided( x.length, x, 1, 0, wrapper );
7474

7575
/**
76-
* Invokes a provided callback.
77-
*
78-
* @private
79-
* @param {number} value - current element
80-
* @param {NonNegativeInteger} aidx - current array index
76+
* Invokes a provided callback.
77+
*
78+
* @private
79+
* @param {number} value - current element
80+
* @param {NonNegativeInteger} aidx - current array index
8181
* @param {NonNegativeInteger} sidx - current strided index
82-
* @param {NumericArray} arr - input array
83-
* @returns {number} callback return value
84-
*/
82+
* @param {NumericArray} arr - input array
83+
* @returns {number} callback return value
84+
*/
8585
function wrapper( value, aidx, sidx, arr ) {
8686
return clbk.call( thisArg, value, aidx, arr );
8787
}

0 commit comments

Comments
 (0)