Skip to content

Commit 0694320

Browse files
committed
Remove trailing whitespace
1 parent 5e1ed55 commit 0694320

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var arr = [ 'beep', 'boop', 'foo', 'bar' ];
4444
var groups = [ 'b', 'b', 'f', 'b' ];
4545

4646
var opts = {
47-
'returns': 'indices'
47+
'returns': 'indices'
4848
};
4949
var out = group( arr, opts, groups );
5050
// returns { 'b': [ 0, 1, 3 ], 'f': [ 2 ] }
@@ -57,7 +57,7 @@ var arr = [ 'beep', 'boop', 'foo', 'bar' ];
5757
var groups = [ 'b', 'b', 'f', 'b' ];
5858

5959
var opts = {
60-
'returns': '*'
60+
'returns': '*'
6161
};
6262
var out = group( arr, opts, groups );
6363
// returns { 'b': [ [ 0, 'beep' ], [ 1, 'boop ], [ 3, 'bar' ] ], 'f': [ [ 2, 'foo' ] ] }

0 commit comments

Comments
 (0)