We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22a3985 + e00dd09 commit b48711fCopy full SHA for b48711f
MAINTAINERS
@@ -2,3 +2,4 @@ keithamus
2
davelosert
3
lucasfcosta
4
meeber
5
+vieiralucas
test/index.js
@@ -85,9 +85,11 @@ describe('checkError', function () {
85
return 1;
86
}
87
88
- var anonymousFunc = function () { // eslint-disable-line func-style
89
- return 2;
90
- };
+ var anonymousFunc = (function () {
+ return function () { // eslint-disable-line func-style
+ return 2;
91
+ };
92
+ }());
93
94
// See chaijs/chai/issues/45: some poorly-constructed custom errors don't have useful names
95
// on either their constructor or their constructor prototype, but instead
0 commit comments