Skip to content

Commit a939020

Browse files
fix: lint errors
1 parent 01ffab4 commit a939020

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18+
/* eslint-disable max-depth */
1819

1920
'use strict';
2021

@@ -106,7 +107,7 @@ function unary5dBy( arrays, shape, fcn, clbk ) {
106107
x0 = x1[ i1 ];
107108
y0 = y1[ i1 ];
108109
for ( i0 = 0; i0 < S0; i0++ ) {
109-
v = clbk.call( thisArg, x0[ i0 ], [ i4, i3, i2, i1, i0 ], [ x, y ] );
110+
v = clbk.call( thisArg, x0[ i0 ], [ i4, i3, i2, i1, i0 ], [ x, y ] ); //eslint-disable max-len
110111
if ( v !== void 0 ) {
111112
y0[ i0 ] = fcn( v );
112113
}

0 commit comments

Comments
 (0)