@@ -34,7 +34,7 @@ function Foo() {
3434 this .a = ' beep' ;
3535 this .b = ' boop' ;
3636 return this ;
37- };
37+ }
3838
3939Foo .prototype = Object .create ( null );
4040Foo .prototype .c = ' foo' ;
@@ -61,7 +61,7 @@ function Foo() {
6161 this .a = ' beep' ;
6262 this .b = ' boop' ;
6363 return this ;
64- };
64+ }
6565
6666Foo .prototype = Object .create ( null );
6767Foo .prototype .c = ' foo' ;
@@ -89,7 +89,7 @@ function Foo() {
8989 this .a = ' beep' ;
9090 this .b = ' boop' ;
9191 return this ;
92- };
92+ }
9393
9494Foo .prototype = Object .create ( null );
9595Foo .prototype .c = ' foo' ;
@@ -98,7 +98,7 @@ Foo.prototype.d = 'bar';
9898var obj = new Foo ();
9999
100100var opts = {
101- ' returns' : ' keys'
101+ ' returns' : ' keys'
102102};
103103var 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
120120Foo .prototype = Object .create ( null );
121121Foo .prototype .c = ' foo' ;
@@ -124,7 +124,7 @@ Foo.prototype.d = 'bar';
124124var obj = new Foo ();
125125
126126var opts = {
127- ' returns' : ' *'
127+ ' returns' : ' *'
128128};
129129var 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
147147Foo .prototype = Object .create ( null );
148148Foo .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