Skip to content

Commit

Permalink
fix: up 🪛
Browse files Browse the repository at this point in the history
  • Loading branch information
bricss committed Dec 15, 2024
1 parent f44a571 commit 031627e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@stylistic/eslint-plugin-js": "^2.12.1",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"eslint-config-ultra-refined": "^3.3.0",
"eslint-config-ultra-refined": "^3.3.1",
"mocha": "^11.0.1"
},
"description": "The robust request library that humanity deserves 🌐",
Expand Down Expand Up @@ -70,5 +70,5 @@
"test:bail": "mocha --bail",
"test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
},
"version": "5.3.0"
"version": "5.3.1"
}
4 changes: 3 additions & 1 deletion src/formdata.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ export class FormData {
input = Object.entries(input);
}

for (const [key, value] of input) { this.append(key, value); }
for (const [key, value] of input) {
this.append(key, value);
}
}
}

Expand Down

0 comments on commit 031627e

Please sign in to comment.