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/console.ts | |
parent | 9b59ed7c7907c5f365e72b5c5a74114eb8ff1488 (diff) |
move Web APIs to cli/js/web/
Diffstat (limited to 'cli/js/console.ts')
-rw-r--r-- | cli/js/console.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/console.ts b/cli/js/console.ts index f5830b4a1..05e983ec7 100644 --- a/cli/js/console.ts +++ b/cli/js/console.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { isTypedArray } from "./util.ts"; import { TypedArray } from "./types.ts"; -import { TextEncoder } from "./text_encoding.ts"; +import { TextEncoder } from "./web/text_encoding.ts"; import { File, stdout } from "./files.ts"; import { cliTable } from "./console_table.ts"; import { exposeForTest } from "./internals.ts"; |