Skip to content

Commit 92d5f83

Browse files
CrowdHailerlpil
authored andcommitted
extract common function for building request
1 parent b745dcb commit 92d5f83

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/ffi.mjs

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@ export function from_fetch_response(response) {
2525
);
2626
}
2727

28-
export function to_fetch_request(request) {
28+
function request_common(request) {
2929
let url = uri_to_string(to_uri(request));
3030
let method = method_to_string(request.method).toUpperCase();
3131
let options = {
3232
headers: make_headers(request.headers),
3333
method,
3434
};
35-
if (method !== "GET" && method !== "HEAD") options.body = request.body;
35+
return [url, options]
36+
}
37+
38+
export function to_fetch_request(request) {
39+
let [url, options] = request_common(request)
40+
if (options.method !== "GET" && options.method !== "HEAD") options.body = request.body;
3641
return new globalThis.Request(url, options);
3742
}
3843

3944
export function bitarray_request_to_fetch_request(request) {
40-
let url = uri_to_string(to_uri(request));
41-
let method = method_to_string(request.method).toUpperCase();
42-
let options = {
43-
headers: make_headers(request.headers),
44-
method,
45-
};
46-
if (method !== "GET" && method !== "HEAD") options.body = request.body.buffer;
45+
let [url, options] = request_common(request)
46+
if (options.method !== "GET" && options.method !== "HEAD") options.body = request.body.buffer;
4747
return new globalThis.Request(url, options);
4848
}
4949

0 commit comments

Comments
 (0)