Skip to content

Commit ccad894

Browse files
committed
refactor: disable max-len rule
1 parent 1c48565 commit ccad894

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/ndarray/base/where/lib/0d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
* // => <Float64Array>[ 1.0 ]
121121
*/
122122
function where0d( condition, x, y, out ) {
123-
out.accessors[ 1 ]( out.data, out.offset, ( condition.accessors[ 0 ]( condition.data, condition.offset ) ) ? x.accessors[ 0 ]( x.data, x.offset ) : y.accessors[ 0 ]( y.data, y.offset ) );
123+
out.accessors[ 1 ]( out.data, out.offset, ( condition.accessors[ 0 ]( condition.data, condition.offset ) ) ? x.accessors[ 0 ]( x.data, x.offset ) : y.accessors[ 0 ]( y.data, y.offset ) ); // eslint-disable-line max-len
124124
}
125125

126126

0 commit comments

Comments
 (0)