Skip to content

Commit d3c4e04

Browse files
committed
Remove trailing whitespace
1 parent 4f2ce94 commit d3c4e04

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/utils/group-by

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function indicator( v ) {
6565
var arr = [ 'beep', 'boop', 'foo', 'bar' ];
6666

6767
var opts = {
68-
'returns': 'indices'
68+
'returns': 'indices'
6969
};
7070
var out = groupBy( arr, opts, indicator );
7171
// returns { 'b': [ 0, 1, 3 ], 'f': [ 2 ] }
@@ -80,7 +80,7 @@ function indicator( v ) {
8080
var arr = [ 'beep', 'boop', 'foo', 'bar' ];
8181

8282
var opts = {
83-
'returns': '*'
83+
'returns': '*'
8484
};
8585
var out = groupBy( arr, opts, indicator );
8686
// returns { 'b': [ [ 0, 'beep' ], [ 1, 'boop ], [ 3, 'bar' ] ], 'f': [ [ 2, 'foo' ] ] }

0 commit comments

Comments
 (0)