Skip to content

Commit 2c01ddf

Browse files
fix: lint errors
1 parent c662592 commit 2c01ddf

File tree

1 file changed

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

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,7 @@ function unary5dBy( arrays, shape, fcn, clbk ) {
107107
y0 = y1[ i1 ];
108108
for ( i0 = 0; i0 < S0; i0++ ) {
109109
v = clbk.call( thisArg, x0[ i0 ], [ i4, i3, i2, i1, i0 ], [ x, y ] );
110-
if ( v !== void 0 ) {
111-
y0[ i0 ] = fcn( v );
112-
}
110+
y0[ i0 ] = fcn( v );
113111
}
114112
}
115113
}

0 commit comments

Comments
 (0)