diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-03-22 16:21:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-22 17:21:05 +0100 |
| commit | b688b61036177bded61726627e66c2c4707a2a8f (patch) | |
| tree | 272a5ccb223b3669584f46ac33f1f46e6472324e /ext/web/06_streams.js | |
| parent | 43be97923f671f37493549c8463a8824c8b63f6b (diff) | |
refactor(ext/web): use relative specifiers (#23024)
Diffstat (limited to 'ext/web/06_streams.js')
| -rw-r--r-- | ext/web/06_streams.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/web/06_streams.js b/ext/web/06_streams.js index e53184453..cdee1a9dc 100644 --- a/ext/web/06_streams.js +++ b/ext/web/06_streams.js @@ -91,17 +91,17 @@ const { } = primordials; import * as webidl from "ext:deno_webidl/00_webidl.js"; -import { structuredClone } from "ext:deno_web/02_structured_clone.js"; +import { structuredClone } from "./02_structured_clone.js"; import { AbortSignalPrototype, add, newSignal, remove, signalAbort, -} from "ext:deno_web/03_abort_signal.js"; +} from "./03_abort_signal.js"; import { createFilteredInspectProxy } from "ext:deno_console/01_console.js"; -import { assert, AssertionError } from "ext:deno_web/00_infra.js"; +import { assert, AssertionError } from "./00_infra.js"; /** @template T */ class Deferred { |
