1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

fix(ext/fetch): fix error message of Request constructor (#10772)

This commit is contained in:
Yoshiya Hinosawa 2021-05-27 19:25:30 +09:00 committed by GitHub
parent 7e4c387ae5
commit 56f6e57438
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -273,7 +273,7 @@
((init.body !== undefined && init.body !== null) ||
inputBody !== null)
) {
throw new TypeError("HEAD and GET requests may not have a body.");
throw new TypeError("Request with GET/HEAD method cannot have body.");
}
// 34.