Skip to content

Commit b48711f

Browse files
authored
Merge pull request #10 from vieiralucas/patch-1
Add @vieiralucas to MAINTAINERS
2 parents 22a3985 + e00dd09 commit b48711f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ keithamus
22
davelosert
33
lucasfcosta
44
meeber
5+
vieiralucas

test/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ describe('checkError', function () {
8585
return 1;
8686
}
8787

88-
var anonymousFunc = function () { // eslint-disable-line func-style
89-
return 2;
90-
};
88+
var anonymousFunc = (function () {
89+
return function () { // eslint-disable-line func-style
90+
return 2;
91+
};
92+
}());
9193

9294
// See chaijs/chai/issues/45: some poorly-constructed custom errors don't have useful names
9395
// on either their constructor or their constructor prototype, but instead

0 commit comments

Comments
 (0)