Skip to content

Commit 7711af5

Browse files
fix: lint errors
1 parent a939020 commit 7711af5

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/base/unary5d-by/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/base/unary5d-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function unary5dBy( arrays, shape, fcn, clbk ) {
107107
x0 = x1[ i1 ];
108108
y0 = y1[ i1 ];
109109
for ( i0 = 0; i0 < S0; i0++ ) {
110-
v = clbk.call( thisArg, x0[ i0 ], [ i4, i3, i2, i1, i0 ], [ x, y ] ); //eslint-disable max-len
110+
v = clbk.call( thisArg, x0[ i0 ], [ i4, i3, i2, i1, i0 ], [ x, y ] ); // eslint-disable max-len
111111
if ( v !== void 0 ) {
112112
y0[ i0 ] = fcn( v );
113113
}

0 commit comments

Comments
 (0)