diff options
Diffstat (limited to 'ext/fetch/22_http_client.js')
-rw-r--r-- | ext/fetch/22_http_client.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/fetch/22_http_client.js b/ext/fetch/22_http_client.js index 15690b7d4..f0c2394c3 100644 --- a/ext/fetch/22_http_client.js +++ b/ext/fetch/22_http_client.js @@ -20,7 +20,12 @@ */ function createHttpClient(options) { options.caCerts ??= []; - return new HttpClient(core.opSync("op_fetch_custom_client", options)); + return new HttpClient( + core.opSync( + "op_fetch_custom_client", + options, + ), + ); } class HttpClient { |