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.
1 parent d2f1af3 commit 46e90acCopy full SHA for 46e90ac
.eslintrc.json
@@ -8,6 +8,13 @@
8
"RemoteInputElement": "readable"
9
},
10
"overrides": [
11
+ {
12
+ "files": "*.js",
13
+ "parser": "espree",
14
+ "parserOptions": {
15
+ "ecmaVersion": "2020"
16
+ }
17
+ },
18
{
19
"files": "test/**/*.js",
20
"rules": {
src/index.ts
@@ -63,6 +63,8 @@ function makeAbortController() {
63
if ('AbortController' in window) {
64
return new AbortController()
65
}
66
+
67
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
68
return {signal: null, abort() {}}
69
70
0 commit comments