diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2020-03-05 13:05:41 +0100 |
---|---|---|
committer | Bartek Iwańczuk <biwanczuk@gmail.com> | 2020-03-05 18:48:55 +0100 |
commit | 2e590072148c85bbc479ab49aa9556b0a2cfaff2 (patch) | |
tree | 89747e7b6762158e35f9120ca0ef0fa14991ae34 /cli/js/workers.ts | |
parent | 9b59ed7c7907c5f365e72b5c5a74114eb8ff1488 (diff) |
move Web APIs to cli/js/web/
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(); |