Skip to content

Commit 29f3328

Browse files
committed
Resolve lint errors
1 parent ca51e6c commit 29f3328

File tree

1 file changed

+3
-1
lines changed
  • lib/node_modules/@stdlib/utils/some-by

1 file changed

+3
-1
lines changed

lib/node_modules/@stdlib/utils/some-by/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var arr = [ 1, 2, 3, 4, -5 ];
7272
var context = {
7373
'sum': 0,
7474
'count': 0
75-
};
75+
};
7676

7777
var bool = someBy( arr, 1, sum, context );
7878
// returns true
@@ -106,6 +106,8 @@ var mean = context.sum / context.count;
106106

107107
* The function does __not__ skip `undefined` elements.
108108

109+
<!-- eslint-disable no-sparse-arrays -->
110+
109111
``` javascript
110112
function log( value, index ) {
111113
console.log( '%s: %s', index, value );

0 commit comments

Comments
 (0)