Skip to content

Commit 68f281e

Browse files
committed
Resolve lint errors
1 parent d3c4e04 commit 68f281e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

  • lib/node_modules/@stdlib/utils/group-in

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function Foo() {
3434
this.a = 'beep';
3535
this.b = 'boop';
3636
return this;
37-
};
37+
}
3838

3939
Foo.prototype = Object.create( null );
4040
Foo.prototype.c = 'foo';
@@ -61,7 +61,7 @@ function Foo() {
6161
this.a = 'beep';
6262
this.b = 'boop';
6363
return this;
64-
};
64+
}
6565

6666
Foo.prototype = Object.create( null );
6767
Foo.prototype.c = 'foo';
@@ -89,7 +89,7 @@ function Foo() {
8989
this.a = 'beep';
9090
this.b = 'boop';
9191
return this;
92-
};
92+
}
9393

9494
Foo.prototype = Object.create( null );
9595
Foo.prototype.c = 'foo';
@@ -98,7 +98,7 @@ Foo.prototype.d = 'bar';
9898
var obj = new Foo();
9999

100100
var opts = {
101-
'returns': 'keys'
101+
'returns': 'keys'
102102
};
103103
var out = groupIn( obj, opts, indicator );
104104
// e.g., returns { 'b': [ 'a', 'b', 'd' ], 'f': [ 'c' ] }
@@ -115,7 +115,7 @@ function Foo() {
115115
this.a = 'beep';
116116
this.b = 'boop';
117117
return this;
118-
};
118+
}
119119

120120
Foo.prototype = Object.create( null );
121121
Foo.prototype.c = 'foo';
@@ -124,7 +124,7 @@ Foo.prototype.d = 'bar';
124124
var obj = new Foo();
125125

126126
var opts = {
127-
'returns': '*'
127+
'returns': '*'
128128
};
129129
var out = groupIn( obj, opts, indicator );
130130
// e.g., returns { 'b': [ [ 'a', 'beep' ], [ 'b', 'boop ], [ 'd', 'bar' ] ], 'f': [ [ 'c', 'foo' ] ] }
@@ -142,7 +142,7 @@ function Foo() {
142142
this.a = 'beep';
143143
this.b = 'boop';
144144
return this;
145-
};
145+
}
146146

147147
Foo.prototype = Object.create( null );
148148
Foo.prototype.c = 'foo';
@@ -191,7 +191,7 @@ console.log( context.count );
191191
this.a = 'beep';
192192
this.b = 'boop';
193193
return this;
194-
};
194+
}
195195

196196
Foo.prototype = Object.create( null );
197197
Foo.prototype.c = 'foo';

0 commit comments

Comments
 (0)