Skip to content

Commit 58d6b23

Browse files
committed
style: disable lint rule
1 parent 4cdf27e commit 58d6b23

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/base/assert/has-equal-values/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/base/assert/has-equal-values/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function hasEqualValues( x, y ) {
154154
// If provided boolean arrays, reinterpret the arrays to avoid using accessors to access array elements...
155155
if ( isBooleanArray( x ) ) {
156156
if ( isBooleanArray( y ) ) {
157-
return internal( reinterpretBoolean( x, 0 ), reinterpretBoolean( y, 0 ) );
157+
return internal( reinterpretBoolean( x, 0 ), reinterpretBoolean( y, 0 ) ); // eslint-disable-line max-len
158158
}
159159
return accessors( xo, yo );
160160
}

0 commit comments

Comments
 (0)