summaryrefslogtreecommitdiff
path: root/ext/fetch/23_request.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-04-20 00:58:41 +0200
committerGitHub <noreply@github.com>2023-04-20 00:58:41 +0200
commit02da57e2759a7521d53e28f7fb3fc0a268406b82 (patch)
treee8f08e3a658c5a17e11022b972377881e1ff2bcb /ext/fetch/23_request.js
parentc2e9c8cce5ce1a1c4e81f685a552dc4b6955f421 (diff)
refactor(ext/webidl): remove option bags from "makeException" (#18679)
Creating these options bags is more costly than passing arguments one-by-one. Especially since `prefix` and `context` are passed to all functions.
Diffstat (limited to 'ext/fetch/23_request.js')
-rw-r--r--ext/fetch/23_request.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/fetch/23_request.js b/ext/fetch/23_request.js
index 798346ae6..ae3edffd4 100644
--- a/ext/fetch/23_request.js
+++ b/ext/fetch/23_request.js
@@ -341,7 +341,8 @@ class Request {
throw webidl.makeException(
TypeError,
"`client` must be a Deno.HttpClient",
- { prefix, context: "Argument 2" },
+ prefix,
+ "Argument 2",
);
}
request.clientRid = init.client?.rid ?? null;