summaryrefslogtreecommitdiff
path: root/ext/fetch/26_fetch.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-18 17:57:22 +0100
committerGitHub <noreply@github.com>2024-01-18 17:57:22 +0100
commit4e3aff8400fe1e6854a27687d14a07dc837c88d9 (patch)
tree1b131e3524592b0dc78ff6ec4aaeb62a7920e10a /ext/fetch/26_fetch.js
parent66ff28c21eac7f0cca0d3ccf141b1dc4cafa4888 (diff)
chore: upgrade deno_core to 0.247.0 (#21974)
Diffstat (limited to 'ext/fetch/26_fetch.js')
-rw-r--r--ext/fetch/26_fetch.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/fetch/26_fetch.js b/ext/fetch/26_fetch.js
index 154e2bcd3..7d9918e23 100644
--- a/ext/fetch/26_fetch.js
+++ b/ext/fetch/26_fetch.js
@@ -13,10 +13,13 @@
import { core, primordials } from "ext:core/mod.js";
const {
op_fetch,
- op_fetch_send,
op_wasm_streaming_feed,
op_wasm_streaming_set_url,
} = core.ensureFastOps();
+// TODO(bartlomieju): this ops is also used in `ext/node/polyfills/http.ts`.
+const {
+ op_fetch_send,
+} = core.ensureFastOps(true);
const {
ArrayPrototypePush,
ArrayPrototypeSplice,