Skip to content

Commit a5e26e6

Browse files
committed
Resolve lint errors
1 parent 1a5458c commit a5e26e6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/utils/do-until-each-right

lib/node_modules/@stdlib/utils/do-until-each-right/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var arr = [ 1, NaN, 2, 3, 4 ];
133133
var context = {
134134
'sum': 0,
135135
'count': 0
136-
};
136+
};
137137

138138
doUntilEachRight( arr, sum, predicate, context );
139139

@@ -158,6 +158,8 @@ var mean = context.sum / context.count;
158158

159159
* The function does __not__ skip `undefined` elements.
160160

161+
<!-- eslint-disable no-sparse-arrays -->
162+
161163
``` javascript
162164
function predicate( value ) {
163165
return ( value !== value );

0 commit comments

Comments
 (0)