File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,25 +25,25 @@ export function from_fetch_response(response) {
25
25
) ;
26
26
}
27
27
28
- export function to_fetch_request ( request ) {
28
+ function request_common ( request ) {
29
29
let url = uri_to_string ( to_uri ( request ) ) ;
30
30
let method = method_to_string ( request . method ) . toUpperCase ( ) ;
31
31
let options = {
32
32
headers : make_headers ( request . headers ) ,
33
33
method,
34
34
} ;
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 ;
36
41
return new globalThis . Request ( url , options ) ;
37
42
}
38
43
39
44
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 ;
47
47
return new globalThis . Request ( url , options ) ;
48
48
}
49
49
You can’t perform that action at this time.
0 commit comments