Skip to content

Commit

Permalink
fix(parseBody): use true default charset
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbonnet committed May 30, 2022
1 parent 1d02601 commit f6af2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parseBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { HTTPError } from "./HTTPError.js";

export function parseBody(
request,
encoding = "utf-8",
encoding = "utf8",
contentLength = null,
limit = null,
) {
Expand Down

0 comments on commit f6af2b2

Please sign in to comment.