summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2023-03-14 23:06:12 +0900
committerGitHub <noreply@github.com>2023-03-14 15:06:12 +0100
commit8d412f6412457898b03e412137565f8b2f1f073c (patch)
tree547b3fc2df877ed53180b0d761273e1024cfbfb6
parent9089c12912f21dcfe97a27fc21f3fca4cc640e85 (diff)
fix(ext/web): Stop using `globalThis.ReadableStream` in `Blob` (#18187)
-rw-r--r--ext/web/09_file.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/web/09_file.js b/ext/web/09_file.js
index ea1d80afd..5ebef8f9d 100644
--- a/ext/web/09_file.js
+++ b/ext/web/09_file.js
@@ -13,6 +13,7 @@
const core = globalThis.Deno.core;
const ops = core.ops;
import * as webidl from "ext:deno_webidl/00_webidl.js";
+import { ReadableStream } from "ext:deno_web/06_streams.js";
const primordials = globalThis.__bootstrap.primordials;
const {
ArrayBufferPrototype,