diff options
Diffstat (limited to 'cli/js/workers.ts')
-rw-r--r-- | cli/js/workers.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/js/workers.ts b/cli/js/workers.ts index 3258e4137..95012e1b8 100644 --- a/cli/js/workers.ts +++ b/cli/js/workers.ts @@ -2,13 +2,13 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ import { sendAsync, sendSync } from "./dispatch_json.ts"; import { log } from "./util.ts"; -import { TextDecoder, TextEncoder } from "./text_encoding.ts"; +import { TextDecoder, TextEncoder } from "./web/text_encoding.ts"; /* -import { blobURLMap } from "./url.ts"; -import { blobBytesWeakMap } from "./blob.ts"; +import { blobURLMap } from "./web/url.ts"; +import { blobBytesWeakMap } from "./web/blob.ts"; */ -import { Event } from "./event.ts"; -import { EventTarget } from "./event_target.ts"; +import { Event } from "./web/event.ts"; +import { EventTarget } from "./web/event_target.ts"; const encoder = new TextEncoder(); const decoder = new TextDecoder(); |